diff options
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/conversions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/conversions.rb b/activesupport/lib/active_support/core_ext/hash/conversions.rb index 1cdf7d5c54..f0ce27508f 100644 --- a/activesupport/lib/active_support/core_ext/hash/conversions.rb +++ b/activesupport/lib/active_support/core_ext/hash/conversions.rb @@ -15,7 +15,7 @@ end class Array def to_query(key) #:nodoc: - collect { |value| value.to_query("#{key}[]") }.sort * '&' + collect { |value| value.to_query("#{key}[]") } * '&' end end |