In Rails 2.3, if you add a resource map to a namespace in your routes.rb, how do you make link_to (and form_for and all those) understand that it should get that namespaced controller instead of one in the root namespace?
example:
map.namespace :admin do |admin| admin.resources :opt_in_users end
link_to @anOptInUser #should use link_for_admin_opt_in_user,
# but tries to use link_for_opt_in_user, which fails