CC-1724:Phone home statistic

- Fixed the bug where it didn't populate country dropdown box
This was due to default sql not popuplate country table correctly
- Changed 180*180 min log text to 200*200
- Changed text are size in support settings
- Client now sends base64encoded image to server.
This commit is contained in:
James Moon 2011-06-20 20:31:20 -07:00
parent 2fb721167c
commit dd4ea127fc
5 changed files with 251 additions and 250 deletions

View file

@ -70,15 +70,15 @@ class Application_Form_SupportPreferences extends Zend_Form_SubForm
));
// Station Description
$this->addElement('textarea', 'Description', array(
'label' => 'Station Description:',
'required' => false,
'class' => 'input_text_area',
'value' => Application_Model_Preference::GetStationDescription(),
'decorators' => array(
'ViewHelper'
)
));
$description = new Zend_Form_Element_Textarea('Description');
$description->class = 'input_text_area';
$description->setLabel('Station Description:')
->setRequired(false)
->setValue(Application_Model_Preference::GetStationDescription())
->setDecorators(array('ViewHelper'))
->setAttrib('ROWS','2')
->setAttrib('COLS','58');
$this->addElement($description);
// Station Logo
$upload = new Zend_Form_Element_File('Logo');