From: cjwatson <> Date: Sun, 8 Dec 2002 21:50:29 +0000 (-0800) Subject: [project @ 2002-12-08 13:50:29 by cjwatson] X-Git-Tag: release/2.6.0~972 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=979b2b5211eefc43a7f465cc077e73125a6dc47b;p=debbugs.git [project @ 2002-12-08 13:50:29 by cjwatson] Accept ';' as a CGI argument separator. --- diff --git a/cgi/common.pl b/cgi/common.pl index 340bbdf3..d45b9deb 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -70,7 +70,7 @@ sub readparse { } else { return; } - foreach (split(/&/,$in)) { + foreach (split(/[&;]/,$in)) { s/\+/ /g; ($key, $val) = split(/=/,$_,2); $key=~s/%(..)/pack("c",hex($1))/ge;