ZF-11914: Error on line 1623 of Form.php missing =
Description
Found an error on line 1623 of Zend_Form
You can read on that line: if (($oldName = $form->getName()) &&
When you should be reading: if (($oldName == $form->getName()) &&
So missing "=" for it to compare the values.
Comments
Posted by Fernando Andre (andref) on 2011-11-26T23:49:41.000+0000
Sorry, after all the coder was just doing an assign of the variable inside the if statement.