When calling requestAction from an admin method (for example
admin_edit()), cake automatically adds /admin to the method.
For example

function admin_edit() {
   $this->requestAction('/users/writeConfig');
}

looks for: /admin/users/writeConfig
in 1.1 requestAction didn't adds the admin prefix, to call a protected
method one has to added it by hand like
$this->requestAction('/admin/users/writeConfig');

is this a planned changed? there is a way of calling a not admin
method from one that it is?
cake team, you need a ticket for this?

Thanks in advance,
gonza


--~--~---------~--~----~------------~-------~--~----~
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