Minor fix for url_for where additional values are (incorrectly) set in the hash... Before fix: options = {:controller => ''projects'', :action => ''index''} url_for(options) options => {:controller => ''projects'', :action => ''index'', :host => ''www.example.com'', :protocol => ''http''} After fix: options = {:controller => ''projects'', :action => ''index''} url_for(options) options => {:controller => ''projects'', :action => ''index''} Pull request at: https://github.com/rails/rails/pull/2497 Thanks, Andrew -- 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 rubyonrails-core@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-core+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-core?hl=en.