diff --git a/forms/FormField.php b/forms/FormField.php index 561d3a307..ef1ff4697 100644 --- a/forms/FormField.php +++ b/forms/FormField.php @@ -47,7 +47,7 @@ class FormField extends ViewableData { $this->name = $name; $this->title = ($title === null) ? $name : $title; - if($value) $this->value = $value; + if(isset($value)) $this->value = $value; if($form) $this->setForm($form); parent::__construct();