From: Jason Woofenden Date: Mon, 11 Aug 2014 15:06:55 +0000 (-0400) Subject: metaform: remove buggy unused code from fields parser X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=93f76cafaeb914987e47efa22ad74ca435b02bfb metaform: remove buggy unused code from fields parser --- diff --git a/metaform.php b/metaform.php index deba1de..1cfb70c 100644 --- a/metaform.php +++ b/metaform.php @@ -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);