From 5e94f053cb52bac19bb0d5bb41bc52113c5a2078 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 26 Nov 2007 22:41:28 +0000 Subject: Fixed to_s bug with namespace routes (closes #10283) [johnb] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8216 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/routing.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib/action_controller/routing.rb') diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb index 1b7eb74db1..4baea24572 100644 --- a/actionpack/lib/action_controller/routing.rb +++ b/actionpack/lib/action_controller/routing.rb @@ -1012,7 +1012,7 @@ module ActionController path = "/#{path}" unless path[0] == ?/ path = "#{path}/" unless path[-1] == ?/ - path = "/#{options[:path_prefix].gsub(/^\//,'')}#{path}" if options[:path_prefix] + path = "/#{options[:path_prefix].to_s.gsub(/^\//,'')}#{path}" if options[:path_prefix] segments = segments_for_route_path(path) defaults, requirements, conditions = divide_route_options(segments, options) -- cgit v1.2.3