On Jan 26, 2008 5:10 AM, Daniel Guettler <[EMAIL PROTECTED]> wrote: > > I came across this when switching from rails 1.2.6 to 2.0.2, there is > a change in the way routes are generated between these to version due > to the routing optimization in rails 2.0.2. > In version 1.2.6 it was possible to overwrite the default_url_options > method in ActionController::Base to define parameters attached to each > generated url. > Due to the routing optimization in rails 2.0.2 this is not anymore > possible if no other parameters are passed to the generated named > route method the default options will not be appended anymore. > > Is this an intentional change or can this be considered a bug?
This is a bug, please open a ticket for it at dev.rubyonrails.org, if you could attach a simplified version of your application it'll help track it down. In the meantime you can disable the optimisation code by setting config.action_controller.optimise_named_routes = false -- Cheers Koz --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" 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/rubyonrails-core?hl=en -~----------~----~----~----~------~----~------~--~---
