CC-3850: Use qTip instead of custom tooltips

-removed description from cb_airtime_auth and cb_custom_auth
-description is no longer needed since we use qtips
This commit is contained in:
denise 2012-06-05 14:49:31 -04:00
parent 5966c7feda
commit 8b71ed6078
1 changed files with 0 additions and 2 deletions

View File

@ -8,14 +8,12 @@ class Application_Form_AddShowLiveStream extends Zend_Form_SubForm
{
$cb_airtime_auth = new Zend_Form_Element_Checkbox("cb_airtime_auth");
$cb_airtime_auth->setLabel("Use Airtime Authentication:")
->setDescription($description1)
->setRequired(false)
->setDecorators(array('ViewHelper'));
$this->addElement($cb_airtime_auth);
$cb_custom_auth = new Zend_Form_Element_Checkbox("cb_custom_auth");
$cb_custom_auth ->setLabel("Use Custom Authentication:")
->setDescription($description2)
->setRequired(false)
->setDecorators(array('ViewHelper'));
$this->addElement($cb_custom_auth);