RE: [fw-general] Zend_Acl 1.11 broken my code

2010-11-14 Thread Terre Porter
Patch works like a charm here. Thanks for the fast turnaround Ralph. Terre -Original Message- From: Ralph Schindler [mailto:ralph.schind...@zend.com] Sent: Friday, November 12, 2010 3:28 PM To: fw-general@lists.zend.com Subject: Re: [fw-general] Zend_Acl 1.11 broken my code Hi All

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-13 Thread Emmanuel Bouton
Schindler [mailto:ralph.schind...@zend.com] Sent: Thursday, November 11, 2010 12:50 PM To: fw-general@lists.zend.com Subject: Re: [fw-general] Zend_Acl 1.11 broken my code I've been looking at this over the past day and I am attempting to find a solution.  As you can see it was a fix

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-13 Thread Valentin
Hi! Tahnxx Ralph Works fine for me. Regards 2010/11/12 Ralph Schindler ralph.schind...@zend.com Hi All, I've uploaded a patch to Zend_Acl that covers this use case while being completely backwards compatible. I'd really like to see everyone test this so we can feel good about including

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-12 Thread Ralph Schindler
('administrator') ? allowed : denied; // returns allowed Hope that helps. Terre -Original Message- From: Ralph Schindler [mailto:ralph.schind...@zend.com] Sent: Thursday, November 11, 2010 12:50 PM To: fw-general@lists.zend.com Subject: Re: [fw-general] Zend_Acl 1.11 broken my code I've

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-11 Thread Ralph Schindler
I've been looking at this over the past day and I am attempting to find a solution. As you can see it was a fix for a previous issue: http://framework.zend.com/issues/browse/ZF-9643 Fixing the previous issue did not break any existing unit tests. I will get to the bottom of it and figure out

RE: [fw-general] Zend_Acl 1.11 broken my code

2010-11-11 Thread Terre Porter
- From: Ralph Schindler [mailto:ralph.schind...@zend.com] Sent: Thursday, November 11, 2010 12:50 PM To: fw-general@lists.zend.com Subject: Re: [fw-general] Zend_Acl 1.11 broken my code I've been looking at this over the past day and I am attempting to find a solution. As you can see

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-10 Thread Emmanuel Bouton
Hi, A bug has been created for that : http://framework.zend.com/issues/browse/ZF-10649 I suggest you to vote for its fix ;) Manu 2010/11/10 Valentin valen...@valclip.com Hi, New version 1.11 have only one change in Zend_Acl line 636: Old line $resources = array($resources); change for

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-10 Thread Matthew Weier O'Phinney
-- Valentin valen...@valclip.com 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) ?

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-10 Thread Jurian Sluiman
On Wednesday 10 Nov 2010 20:08:54 Valentin wrote: Hi, 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);

Re: [fw-general] Zend_Acl 1.11 broken my code

2010-11-10 Thread Valentin
Hi, I'm impressed, is exactly the problem reported at bug http://framework.zend.com/issues/browse/ZF-10649 Thanxx 2010/11/10 Emmanuel Bouton got...@gmail.com Hi, A bug has been created for that : http://framework.zend.com/issues/browse/ZF-10649 I suggest you to vote for its fix ;) Manu