> Hi, > > I'm still battling this one and am yet unsure whether this is a bug or not. > It would be great if someone could put me out of my misery and confirm > whether this is bug or not? > > With the latest testing to characterise the problem it seems to be something > to do with (a) controllers a sub-directory down &/or (b) url_for usage in a > layout perhaps. That is in the sense that I have a "url_for" which resolves > find when the context is one controller but throws an error when in the > context of another.
If you want your url_for calls to work from both the top level, and controllers in modules, you need to use: :controller=>'/the_controller' Otherwise it assumes it's a relative link and generates links accordingly. Another (simpler) option is just to use a named route. -- 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 -~----------~----~----~----~------~----~------~--~---
