From 56ce2b0da5869e146aff6513e4cf1a99b6a81abe Mon Sep 17 00:00:00 2001 From: James Date: Mon, 9 Apr 2012 17:04:53 -0400 Subject: [PATCH] - text change on live stream section on show form --- airtime_mvc/application/forms/AddShowLiveStream.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/forms/AddShowLiveStream.php b/airtime_mvc/application/forms/AddShowLiveStream.php index e4b1b9d91..ad4c66c4d 100644 --- a/airtime_mvc/application/forms/AddShowLiveStream.php +++ b/airtime_mvc/application/forms/AddShowLiveStream.php @@ -8,7 +8,7 @@ class Application_Form_AddShowLiveStream extends Zend_Form_SubForm { $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."; $cb_airtime_auth = new Zend_Form_Element_Checkbox("cb_airtime_auth"); - $cb_airtime_auth->setLabel("Connect using Airtime username & password") + $cb_airtime_auth->setLabel("Use Airtime Authentication") ->setDescription($description1) ->setRequired(false) ->setDecorators(array('ViewHelper')); @@ -16,7 +16,7 @@ class Application_Form_AddShowLiveStream extends Zend_Form_SubForm $description2 = "Specifiy custom athentification which will work for only the show."; $cb_custom_auth = new Zend_Form_Element_Checkbox("cb_custom_auth"); - $cb_custom_auth ->setLabel("Custom") + $cb_custom_auth ->setLabel("Use Custom Authentication") ->setDescription($description2) ->setRequired(false) ->setDecorators(array('ViewHelper'));