X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=metaform.php;h=1cfb70c7dc099299d33f312b1081d22dfe2a22c1;hb=93f76cafaeb914987e47efa22ad74ca435b02bfb;hp=a16e92f11028628e83887f3458c8c0098cf5d72e;hpb=6a88a3451b48633071536c74a6b654e84ac064f6;p=wfpl.git diff --git a/metaform.php b/metaform.php index a16e92f..1cfb70c 100644 --- a/metaform.php +++ b/metaform.php @@ -18,10 +18,10 @@ # This file writes the code for you (sql, php, html, email) to handle a form. -require_once('code/wfpl/template.php'); -require_once('code/wfpl/http.php'); -require_once('code/wfpl/tar.php'); -require_once('code/wfpl/format.php'); +require_once(__DIR__ . '/template.php'); +require_once(__DIR__ . '/http.php'); +require_once(__DIR__ . '/tar.php'); +require_once(__DIR__ . '/format.php'); # see code/wfpl/metaform/template.html for the html templates for these elements $GLOBALS['types'] = array( @@ -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);