CC-4805: Localization -> Changing default language changes datatables and add media language setting

-fixed
This commit is contained in:
denise 2013-01-07 18:18:40 -05:00
parent e9a86b7bcf
commit a65e72941f
4 changed files with 15 additions and 15 deletions

View file

@ -55,7 +55,7 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm
$locale = new Zend_Form_Element_Select("locale");
$locale->setLabel(_("Default Interface Language"));
$locale->setMultiOptions(Application_Model_Locale::getLocales());
$locale->setValue(Application_Model_Preference::GetLocale());
$locale->setValue(Application_Model_Preference::GetDefaultLocale());
$locale->setDecorators(array('ViewHelper'));
$this->addElement($locale);