Update LanguageDropdownField.php

BUG: Corrected allowed_actions to be private not public
This commit is contained in:
kmayo-ss 2013-07-12 16:59:19 +12:00
parent 0d9bee0a64
commit 5bfc37748b

View File

@ -7,7 +7,7 @@
*/
class LanguageDropdownField extends GroupedDropdownField {
public static $allowed_actions = array(
private static $allowed_actions = array(
'getLocaleForObject'
);
@ -109,4 +109,4 @@ class LanguageDropdownField extends GroupedDropdownField {
return $locale;
}
}
}