-- Valentin <[email protected]> wrote (on Wednesday, 10 November 2010, 08:08 PM +0100): > New version 1.11 have only one change in Zend_Acl line 636: > > Old line > $resources = array($resources); > change for this > $resources = ($resources == null && count($this->_resources) > 0) ? > array_keys($this->_resources) : array($resources); > > > I've been studying (and debug) all day and how it affects the code and not > understand what happens. Any ideas?
Most likely that code is in there as part of a feature request or bugfix. Can you explain to us the following: * How you're defining your ACLs * What operation you're calling that's not working as expected * and what you expect * and what is actually happening If you can do that, we can check to see why the code was changed, and whether your usage of it falls outside of the framework expectations, or if something is indeed broken. Thanks! -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/ PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc
