Thank you very much! The fix worked great.

On Jan 19, 3:18 am, "CraZyLeGs" <[EMAIL PROTECTED]> wrote:
it has to do with how 1.2 controller::redirect is written, it now uses
Router, which doesn't add a '/' at the beginning if it doesn't exist.
basically for a quick fix, go to the redirect function in othAuth,
find:
$frompage = !isset($this->controller->params['url']['url'])? '/':
$this->controller->params['url']['url'];

change it to:
$frompage = !isset($this->controller->params['url']['url'])? '/':
'/'.$this->controller->params['url']['url'];

notice the '/'.
that's all to it, I'll upload this fix along with one related to the
helper in the bakery soon.

Regards


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to