ZF-2402: Improve logic of throwExceptions()
Description
As noted on fw-mvc, the logic of Zend_Controller_Front::throwExceptions() is faulty, and should be rewritten to:
public function throwExceptions($flag = null)
{
if ($flag !== null) {
$this->_throwExceptions = (boolean) $flag;
return $this;
}
return $this->_throwExceptions;
}
Comments
Posted by Matthew Weier O'Phinney (matthew) on 2008-02-14T11:32:54.000+0000
Scheduling for 1.0.4
Posted by Matthew Weier O'Phinney (matthew) on 2008-02-18T15:09:34.000+0000
Committed to trunk and release-1.0 branch.