summary refs log tree commit
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2015-04-06 10:42:34 -0300
committerAaron Patterson <aaron.patterson@gmail.com>2015-06-18 14:06:42 -0700
commit9ca798fd67bae63143ca2345dd8278d6ffdfd7e5 (patch)
tree036dc2588e2175345a149a1c555fb1446c5cf7dc
parent134d6218d0881d87ae6a522e88eafbddb6cd1bb7 (diff)
downloadrack-9ca798fd67bae63143ca2345dd8278d6ffdfd7e5.tar.gz
Give parse_query's second argument a default value
-rw-r--r--lib/rack/request.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rack/request.rb b/lib/rack/request.rb
index d02a1f36..6e00285e 100644
--- a/lib/rack/request.rb
+++ b/lib/rack/request.rb
@@ -365,7 +365,7 @@ module Rack
         ip_addresses.reject { |ip| trusted_proxy?(ip) }
       end
 
-      def parse_query(qs, d)
+      def parse_query(qs, d='&')
         Utils.parse_nested_query(qs, d)
       end