BUGFIX Don't try setting the value attribute on DropdownField or its subclasses.

This commit is contained in:
Simon Welsh 2012-03-17 21:16:25 +13:00
parent e70c9b7d13
commit b9ab70a249

View File

@ -165,7 +165,7 @@ class DropdownField extends FormField {
function getAttributes() {
return array_merge(
parent::getAttributes(),
array('type' => null)
array('type' => null, 'value' => null)
);
}