public
Rubygem
Description: Ramaze is a simple, light and modular open-source web application framework written in Ruby.
Homepage: http://ramaze.net
Clone URL: git://github.com/manveru/ramaze.git
Click here to lend your support to: ramaze and make a donation at www.pledgie.com !
to_s before Rack::Utils::unescape
manveru (author)
Sun Jun 29 23:47:15 -0700 2008
commit  f0d2a7cf2f8f8436a6e48d3333f71e6c1b6419ff
tree    1929187c5fcd6c6bbaffc43e79963cbcda3eb62d
parent  abfd86f65bfd94a686f13d14a0e1b25978213203
...
62
63
64
65
 
66
67
68
...
62
63
64
 
65
66
67
68
0
@@ -62,7 +62,7 @@ module Ramaze
0
     # runs all parameters assigned through flatten and unescape
0
 
0
     def params=(*par)
0
-      self[:params] = par.flatten.compact.map{|pa| Rack::Utils.unescape(pa) }
0
+      self[:params] = par.flatten.compact.map{|pa| Rack::Utils.unescape(pa.to_s) }
0
     end
0
 
0
     # Use this as key for caches.

Comments