Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-03 Thread Matthew Weier O'Phinney
-- Matthew Weier O'Phinney [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 11:50 PM -0500): -- Jordan Moore [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 08:24 PM -0800): The route that fails is as follows: routes homepage

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-03 Thread Jordan Moore
Sounds good to me. On Tue, Dec 2, 2008 at 11:51 AM, Matthew Weier O'Phinney [EMAIL PROTECTED] wrote: -- Matthew Weier O'Phinney [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 11:50 PM -0500): -- Jordan Moore [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 08:24 PM -0800): The

[fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Wil Sinclair
Hi all, It is my pleasure to announce the release of Zend Framework 1.7.1! You can download this new mini release from the ZF download site: http://framework.zend.com/download/latest/ A list of all issues resolved in this release can be found at:

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Jordan Moore
I've got a couple of apps with a static route that is an empty string. This route is used for the base of the domain (/). After upgrading to 1.7.1, the route no longer matches requests for the base of the domain. On Mon, Dec 1, 2008 at 1:54 PM, Wil Sinclair [EMAIL PROTECTED] wrote: Hi all, It

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Jordan Moore
Removing the 3 lines of code in Zend_Controller_Request_Abstract that reference ZF-3465 fixes it. On Mon, Dec 1, 2008 at 2:10 PM, Jordan Moore [EMAIL PROTECTED] wrote: I've got a couple of apps with a static route that is an empty string. This route is used for the base of the domain (/). After

RE: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Wil Sinclair
We're looking in to it now. If necessary, we can release a patch relatively quickly. ,Wil -Original Message- From: Jordan Moore [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2008 2:53 PM To: Wil Sinclair Cc: fw-general Subject: Re: [fw-general] Zend Framework 1.7.1 is now

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Matthew Weier O'Phinney
-- Jordan Moore [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 02:10 PM -0800): I've got a couple of apps with a static route that is an empty string. This route is used for the base of the domain (/). After upgrading to 1.7.1, the route no longer matches requests for the base of the

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Matthew Weier O'Phinney
-- Jordan Moore [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 02:52 PM -0800): Removing the 3 lines of code in Zend_Controller_Request_Abstract that reference ZF-3465 fixes it. Still need the static route that triggers the issue... I'd rather have *both* issues resolved, not just one ;)

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Jordan Moore
Sorry for the delayed response. Apparently this was happening because I wasn't specifying the controller for that route (it previously defaulted to index). This seems like a significant change for a mini release. On Mon, Dec 1, 2008 at 6:21 PM, Matthew Weier O'Phinney [EMAIL PROTECTED] wrote:

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Matthew Weier O'Phinney
-- Jordan Moore [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 07:02 PM -0800): Sorry for the delayed response. Apparently this was happening because I wasn't specifying the controller for that route (it previously defaulted to index). This seems like a significant change for a mini

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Jordan Moore
The route that fails is as follows: routes homepage typeZend_Controller_Router_Route_Static/type route/route defaults actionhomepage/action /defaults /homepage ... /routes The only configuration-type changes I make to the front controller is setting the default module

Re: [fw-general] Zend Framework 1.7.1 is now available!

2008-12-01 Thread Matthew Weier O'Phinney
-- Jordan Moore [EMAIL PROTECTED] wrote (on Monday, 01 December 2008, 08:24 PM -0800): The route that fails is as follows: routes homepage typeZend_Controller_Router_Route_Static/type route/route defaults actionhomepage/action /defaults /homepage ...