Merge pull request #248 from simonwelsh/patch-1

BUGFIX Don't try setting the value attribute on DropdownField or its sub...
This commit is contained in:
Sam Minnée 2012-03-17 01:29:01 -07:00
commit c8d3ebbd98

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)
);
}