JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform: remove buggy unused code from fields parser
authorJason Woofenden <jason@jasonwoof.com>
Mon, 11 Aug 2014 15:06:55 +0000 (11:06 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Mon, 11 Aug 2014 15:06:55 +0000 (11:06 -0400)
metaform.php

index deba1de..1cfb70c 100644 (file)
@@ -179,10 +179,6 @@ function get_fields() {
                        $name = trim(substr($field, 0, -1)); # FIXME: stop this from getting enc_caption()ed
                        $type = '{';
                        $options = null;
-               } elseif(substr($field, -1) == '{') {
-                       $name = 'ignored';
-                       $type = '}';
-                       $options = null;
                } else {
                        list($name, $type, $options) = split('  *', $field);
                        if($options) $options = explode(',', $options);