ZF-3330: Zend_View_Helper_HeadTitle duplicates __toString() method from parent class
Description
There's probably no need to keep identical __toString() methods in Zend_View_Helper_HeadTitle and its parent Zend_View_Helper_Placeholder_Container_Standalone classes:
public function __toString()
{
return $this->toString();
}
Zend_View_Helper_HeadTitle::__toString() can be removed.
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2008-05-27T05:45:29.000+0000
Scheduling for next mini release and assigning to Ralph.
Posted by Jon Whitcraft (sidhighwind) on 2008-10-28T19:19:58.000+0000
Fixed with r12177
Posted by Wil Sinclair (wil) on 2008-11-13T14:10:17.000+0000
Changing issues in preparation for the 1.7.0 release.