⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (536 Bytes)
Bug #1351
ยป patch.txt
Anonymous, 04/04/2009 01:24 PM
Index: lib/net/http.rb
===================================================================
--- lib/net/http.rb (revision 23133)
+++ lib/net/http.rb (working copy)
@@ -1517,7 +1517,7 @@
# http.set_form_data({"q" => "ruby", "lang" => "en"}, ';')
#
def set_form_data(params, sep = '&')
- self.body = params.map {|k, v| encode_kvpair(k, v) }.flatten.join(sep)
+ self.body = params.map {|k, v| encode_kvpair(k.to_s, v) }.flatten.join(sep)
self.content_type = 'application/x-www-form-urlencoded'
end
(1-1/1)
Loading...