ZF-2502: Zend_ACL::inheritsRole not passing parameter properly
Description
Current function reads:
public function inheritsRole($role, $inherit, $onlyParents = false) { return $this->_getRoleRegistry()->inherits($role, $inherit, $onlyParents = false); }
This results in the $onlyParents parameter always being set to false, instead of passing the actual value on towards the private function. Remove the = false from the function call.
Comments
Posted by Darby Felton (darby) on 2008-02-21T08:02:40.000+0000
Fixed for next minor release with SVN r8245.
Posted by Darby Felton (darby) on 2008-02-21T08:10:43.000+0000
Resolved for next mini-release with SVN r8246.