aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-01-31 23:47:03 -0600
committerJoshua Peek <josh@joshpeek.com>2009-01-31 23:51:41 -0600
commit28b65c9120f347bd61569402a5e50ca6d4b9b6e7 (patch)
tree87e9763901ed3d020173dd1c0ed5137925f7bf72 /actionpack/lib
parentfa7aa19a9940a6872efa01b70caf70c7e2915b3f (diff)
downloadrails-28b65c9120f347bd61569402a5e50ca6d4b9b6e7.tar.gz
rails-28b65c9120f347bd61569402a5e50ca6d4b9b6e7.tar.bz2
rails-28b65c9120f347bd61569402a5e50ca6d4b9b6e7.zip
Removed Prototype specific Safari 2 AJAX hack.
The normal null character stripper is still there.
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/rack_ext/parse_query.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/rack_ext/parse_query.rb b/actionpack/lib/action_controller/rack_ext/parse_query.rb
index 2f21a57770..b1acef8e72 100644
--- a/actionpack/lib/action_controller/rack_ext/parse_query.rb
+++ b/actionpack/lib/action_controller/rack_ext/parse_query.rb
@@ -10,7 +10,6 @@ module Rack
def parse_query(qs, d = '&;')
qs = qs.dup
qs.chop! if qs[-1] == 0
- qs.gsub!(/&_=$/, '')
parse_query_without_ajax_body_cleanup(qs, d)
end
module_function :parse_query