CC-2051: Unable to change user password

-Password is changeable, and success message appears whenever a user is added/updated.
This commit is contained in:
martin 2011-03-24 22:29:14 -04:00
parent d71bfbe191
commit 343fb593ee
5 changed files with 23 additions and 3 deletions

View file

@ -72,9 +72,9 @@ class Application_Form_AddUser extends Zend_Form
$select->setAttrib('class', 'input_select');
$select->setAttrib('style', 'width: 40%');
$select->setMultiOptions(array(
"G" => "guest",
"H" => "host",
"A" => "admin"
"G" => "Guest",
"H" => "Host",
"A" => "Admin"
));
$select->setRequired(true);
$this->addElement($select);