CC-3611: Show Form: "Repeats" font is wrong, info images in the wrong place
Fixed both of these issues. Fixed issue with connection URLs in "Add Show" and in "Stream Prefs" where the text was unstyled. Fixed issue with long connection URLS causing display problems in "Add Show" and in "Stream Prefs". Now a scrollbar will appear if the connection URL is too long. Fixed bug in Stream Prefs where zooming out caused the page to be formatted differently. Fixed bug in Stream Prefs where the labels "Master Source Connection URL" and "Show Source Connection URL" wrapped on multiple lines. Fixed help text for Add Show -> Live Stream authication settings, the instructions were wrong and there were misspelled words.
This commit is contained in:
parent
228f699943
commit
869eb77ca4
7 changed files with 20 additions and 14 deletions
|
@ -6,17 +6,17 @@ class Application_Form_AddShowLiveStream extends Zend_Form_SubForm
|
|||
|
||||
public function init()
|
||||
{
|
||||
$description1 = "This follows the same security pattern for the shows: if no users are explicitly set for the show, then anyone with a valid airtime login can connect to the stream, otherwise if there are users assigned to the show, then only those users can connect.";
|
||||
$description1 = "This follows the same security pattern for the shows: only users assigned to the show can connect.";
|
||||
$cb_airtime_auth = new Zend_Form_Element_Checkbox("cb_airtime_auth");
|
||||
$cb_airtime_auth->setLabel("Use Airtime Authentication")
|
||||
$cb_airtime_auth->setLabel("Use Airtime Authentication:")
|
||||
->setDescription($description1)
|
||||
->setRequired(false)
|
||||
->setDecorators(array('ViewHelper'));
|
||||
$this->addElement($cb_airtime_auth);
|
||||
|
||||
$description2 = "Specifiy custom athentification which will work for only the show.";
|
||||
$description2 = "Specify custom authentication which will work for only for this show.";
|
||||
$cb_custom_auth = new Zend_Form_Element_Checkbox("cb_custom_auth");
|
||||
$cb_custom_auth ->setLabel("Use Custom Authentication")
|
||||
$cb_custom_auth ->setLabel("Use Custom Authentication:")
|
||||
->setDescription($description2)
|
||||
->setRequired(false)
|
||||
->setDecorators(array('ViewHelper'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue