MINOR: removed undefined method call

This commit is contained in:
Will Rossiter 2009-12-06 22:52:43 +00:00
parent 71d0d4223d
commit 9520b8693e
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ class UserDefinedForm_Controller extends Page_Controller {
}
// Is this Field Show by Default
if(!$field->ShowOnLoad()) {
if(!$field->ShowOnLoad) {
$defaults .= "$(\"#" . $fieldId . "\").hide();\n";
}