From f9337e772a73d60057b2be234ec468f0a53cf3dd Mon Sep 17 00:00:00 2001 From: James Moon Date: Wed, 22 Jun 2011 23:49:15 -0400 Subject: [PATCH] CC-2424:Support setting formatting - fixed - additional fix: changed logo restriction to 200*200 min and 600*600 max --- airtime_mvc/application/forms/SupportPreferences.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/airtime_mvc/application/forms/SupportPreferences.php b/airtime_mvc/application/forms/SupportPreferences.php index 5e8480f58..85e96158b 100644 --- a/airtime_mvc/application/forms/SupportPreferences.php +++ b/airtime_mvc/application/forms/SupportPreferences.php @@ -88,10 +88,10 @@ class Application_Form_SupportPreferences extends Zend_Form_SubForm ->addValidator('Count', false, 1) ->addValidator('Extension', false, 'jpg,png,gif') ->addValidator('ImageSize', false, array( - 'minwidth' => 180, - 'minheight' => 180, - 'maxwidth' => 1000, - 'maxheight' => 1000)); + 'minwidth' => 200, + 'minheight' => 200, + 'maxwidth' => 600, + 'maxheight' => 600)); $this->addElement($upload); //enable support feedback @@ -121,6 +121,7 @@ class Application_Form_SupportPreferences extends Zend_Form_SubForm 'required' => false, 'filters' => array('StringTrim'), 'readonly' => true, + 'cols' => 61, 'value' => Application_Model_Preference::GetSystemInfo(), 'decorators' => array( 'ViewHelper'