Hi guys... We're developing an app using 1.2, updating it as often as we can keeping in sync with the new changes and tweaking the code as we go. So far everything has been fairly straight forward, and no major problem happened.
However, we updated the cake core last week, now running version 1.2.0.5427 and it seems like the admin routing has changed a fair bit, so much that the admin routes are not even recognised anymore! Looking at the various changes through trac, it seems this bit was removed - which one would believe its the definition of the admin routes... ; 174 /** 175 * Initialize the Router object 176 * 177 */ 178 function __construct() { 179 if (defined('CAKE_ADMIN')) { 180 $admin = CAKE_ADMIN; 181 if (!empty($admin)) { 182 $this->__admin = array( 183 '/:' . $admin . '/:controller/:action/*', 184 '/^(?:\/(?:(' . $admin . ')(?:\\/([a-zA-Z0-9_\\-\\.\\;\\:]+)(?:\\/([a-zA-Z0-9_\\-\\.\\;\\:]+)(?: [\\/\\?](.*))?)?)?))[\/]*$/', 185 array($admin, 'controller', 'action'), array() 186 ); 187 } 188 } 189 } Now when trying to connect to an admin action, we get a AdminController not found... but we never had one either! So anyway, I understand this is the latest dev ... we're using it at our own risks, but I'd appreciate some pointers as to what should be updated, in our code, to work with what I believe to be a new routing model. Also... line 208 is the following; if ($admin && $default == null && $route == $admin) { } $default = am(array('plugin' => null, 'controller' => null, 'action' => null), $default); I have a sneaky feeling the curly bracket might not be quite where we want it...! ;) Anyway... any input? Cheers, Seb. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---