mirror of
https://github.com/mistergibson/gxg-server.git
synced 2026-08-15 10:24:29 -07:00
uri-unescape bug fix 4
This commit is contained in:
parent
4cb2eadd7a
commit
b5e93634cd
1 changed files with 1 additions and 1 deletions
|
|
@ -849,7 +849,7 @@ module GxGwww
|
||||||
#
|
#
|
||||||
operations = []
|
operations = []
|
||||||
the_parser = URI::Parser.new
|
the_parser = URI::Parser.new
|
||||||
triple_parse = Proc.new {|the_string| the_parser.unescape(the_parser.unescape(the_parser.unescape(the_string)))}
|
triple_parse = Proc.new {|the_string| the_parser.unescape(the_parser.unescape(the_parser.unescape(the_parser.unescape(the_string))))}
|
||||||
case the_method
|
case the_method
|
||||||
when :get
|
when :get
|
||||||
if the_request.params["details"].to_s.size > 0
|
if the_request.params["details"].to_s.size > 0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue