I had the same issue when updating. I created a copy method that allowed me to generically call a copy method and give the item I wanted to copy as a parameter. After updating to the branch, I received the same error. My workaround was to name the method _copy in app_controller, and then make a method in the other controllers as copy, calling parent::copy($id). It isn't as clean as it once was, but it is a little safer.
On Sep 18, 9:46 am, "Chris Hartjes" <[EMAIL PROTECTED]> wrote: > On 9/18/07, AD7six <[EMAIL PROTECTED]> wrote: > > > I did some investigations (since I also find myself affected): > >https://trac.cakephp.org/changeset/5628/branches/1.2.x.x/cake/dispatc... > > > This means that it is not possible to define a generic web accessible > > method in the app controller, which leaves me with a bit of a problem, > > since I do that all the time ;). > > > AD > > Interesting...I have not run into that as of yet. Then again, I do > not tend to put anything in to my app_controller other than > before_filter() and is_authorized() when using the Auth component. > > -- > Chris Hartjes > Senior Developer > Cake Development Corporation > > My motto for 2007: "Just build it, damnit!" > > @TheBallpark -http://www.littlehart.net/attheballpark > @TheKeyboard -http://www.littlehart.net/atthekeyboard --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---
