SAAS-876 - better implementation of toggle between Airtime Pro/Custom streaming options

This commit is contained in:
Duncan Sommerville 2015-07-10 13:17:20 -04:00
parent 37ed35f5b2
commit c99165a8dd
3 changed files with 5 additions and 3 deletions

View file

@ -63,7 +63,7 @@ class Application_Form_StreamSetting extends Zend_Form
$custom = Application_Model_Preference::getUsingCustomStreamSettings();
$customSettings = new Zend_Form_Element_Radio('customStreamSettings');
$customSettings->setLabel(_('Streaming Server:'));
$customSettings->setMultiOptions(array(_("Airtime Pro Streaming"), _("Custom / 3rd Party")));
$customSettings->setMultiOptions(array(_("Airtime Pro Streaming"), _("Custom / 3rd Party Streaming")));
$customSettings->setValue(!empty($custom) ? $custom : 0);
$this->addElement($customSettings);
}