FIX: update visibility of static

This commit is contained in:
Will Rossiter 2013-06-02 14:05:16 +12:00
parent aa945f8421
commit b81e4cb7c9

View File

@ -7,9 +7,9 @@
*/
class EditableCountryDropdownField extends EditableFormField {
static $singular_name = 'Country Dropdown';
private static $singular_name = 'Country Dropdown';
static $plural_name = 'Country Dropdowns';
private static $plural_name = 'Country Dropdowns';
public function getFormField() {
return new CountryDropdownField($this->Name, $this->Title);