Skip to content

Commit

Permalink
BUGFIX Don't try setting the value attribute on DropdownField or its …
Browse files Browse the repository at this point in the history
…subclasses.
  • Loading branch information
simonwelsh committed Mar 17, 2012
1 parent e70c9b7 commit b9ab70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forms/DropdownField.php
Expand Up @@ -165,7 +165,7 @@ function Field($properties = array()) {
function getAttributes() {
return array_merge(
parent::getAttributes(),
array('type' => null)
array('type' => null, 'value' => null)
);
}

Expand Down

0 comments on commit b9ab70a

Please sign in to comment.