aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2012-08-04 19:01:37 +0100
committerAndrew White <andyw@pixeltrix.co.uk>2012-08-04 19:02:58 +0100
commitc5807728d52c98b76e9badd95093471044b98d07 (patch)
tree2f2f2e13b5698025489907393f20671936e8f766 /actionpack/lib
parent4059423809c38d2365701ce055e97420228a87db (diff)
downloadrails-c5807728d52c98b76e9badd95093471044b98d07.tar.gz
rails-c5807728d52c98b76e9badd95093471044b98d07.tar.bz2
rails-c5807728d52c98b76e9badd95093471044b98d07.zip
Revert "polymorphic_url with an array generates a query string"
Passing options as the last value in an array doesn't work with form_for. This reverts commit 61c8a4d926343903593a27080216af7e4ed81268.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/routing/polymorphic_routes.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb b/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb
index 7bdd9244d1..3d7b8878b8 100644
--- a/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb
+++ b/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb
@@ -62,7 +62,6 @@ module ActionDispatch
#
# # calls post_url(post)
# polymorphic_url(post) # => "http://example.com/posts/1"
- # polymorphic_url([post, :foo => 'bar']) # => "http://example.com/posts/1?foo=bar"
# polymorphic_url([blog, post]) # => "http://example.com/blogs/1/posts/1"
# polymorphic_url([:admin, blog, post]) # => "http://example.com/admin/blogs/1/posts/1"
# polymorphic_url([user, :blog, post]) # => "http://example.com/users/1/blog/posts/1"
@@ -165,7 +164,6 @@ module ActionDispatch
def build_named_route_call(records, inflection, options = {})
if records.is_a?(Array)
- query_string = records.pop if records.last.is_a?(Hash)
record = records.pop
route = records.map do |parent|
if parent.is_a?(Symbol) || parent.is_a?(String)
@@ -198,8 +196,7 @@ module ActionDispatch
def extract_record(record_or_hash_or_array)
case record_or_hash_or_array
- when Array
- record_or_hash_or_array.last.is_a?(Hash) ? record_or_hash_or_array[-2] : record_or_hash_or_array.last
+ when Array; record_or_hash_or_array.last
when Hash; record_or_hash_or_array[:id]
else record_or_hash_or_array
end