From: <gem...@li...> - 2012-01-23 08:33:06
|
Revision: 414 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=414&view=rev Author: mennodekker Date: 2012-01-23 08:33:00 +0000 (Mon, 23 Jan 2012) Log Message: ----------- Fixed missing 'password' element while the 'repeat password' element was visible (introduced in [394]) Modified Paths: -------------- trunk/library/classes/MUtil/Model/FormBridge.php Modified: trunk/library/classes/MUtil/Model/FormBridge.php =================================================================== --- trunk/library/classes/MUtil/Model/FormBridge.php 2012-01-20 17:06:04 UTC (rev 413) +++ trunk/library/classes/MUtil/Model/FormBridge.php 2012-01-23 08:33:00 UTC (rev 414) @@ -477,6 +477,7 @@ $element = new Zend_Form_Element_Password($name, $options); $this->_applyValidators($name, $element); + $this->form->addElement($element); if ($stringlength) { $element->addValidator('StringLength', true, $stringlength); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |