Updating to Rails-3.0.3 resulted in 14 tests failing. Investigating one of them I discover that this message "Completed 406 Not Acceptable in 223ms" is being returned instead of the expected page. This error indicates tha the format of the request cannot be satisfied. Usually a format specification is html or json or pdf. Imagine my surprise then when I see in the html generated from the view template: <td> <a href="/user/roles.1" id="show_user_roles_administrator_link">Roles</a> </td> instead of: <td> <a href="/users/1/roles" id="show_user_roles_administrator_link">Roles</a> </td> The question is: Why is Rails 3.0.3 asking for a format of .1 instead of requesting a user with id == 1? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.