JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform: remove buggy unused code from fields parser
[wfpl.git] / 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);