ZF-2997: filtername on Zend_Form_Element is typed wrongly
Description
Line 421 of Zend_Form_Element: $name = $this->filtername($name);
Should be rather: $name = $this->filterName($name);
Line 421 of Zend_Form_Element: $name = $this->filtername($name);
Should be rather: $name = $this->filterName($name);
Comments
Posted by Wil Sinclair (wil) on 2008-03-31T14:57:16.000+0000
Please evaluate and categorize as necessary.
Posted by Matthew Weier O'Phinney (matthew) on 2008-04-22T11:27:53.000+0000
Scheduling for next mini release. This is not a critical fix, as PHP interprets function names in a case insensitive manner, and both examples work.
Posted by Matthew Weier O'Phinney (matthew) on 2008-05-05T10:52:43.000+0000
Updated in trunk and 1.5 release branch as of r9377.