From: mkanat%bugzilla.org <> Date: Tue, 20 Jan 2009 20:18:47 +0000 (+0000) Subject: Bug 431744: "Change Columns" URL contained more than 3x the characters in the base... X-Git-Tag: bugzilla-3.3.2~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8daa29c602f8409beab723c955405a501ab649d3;p=thirdparty%2Fbugzilla.git Bug 431744: "Change Columns" URL contained more than 3x the characters in the base buglist.cgi URL Patch By Michael J Tosh r=mkanat, a=mkanat --- diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 6d6ab575c5..68d3ef69d1 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -109,6 +109,10 @@ sub canonicalise_query { # Leave this key out if it's in the exclude list next if lsearch(\@exclude, $key) != -1; + # Remove the Boolean Charts for standard query.cgi fields + # They are listed in the query URL already + next if $key =~ /^(field|type|value)(-\d+){3}$/; + my $esc_key = url_quote($key); foreach my $value ($self->param($key)) {