Commit 8daa29c6 authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 431744: "Change Columns" URL contained more than 3x the characters in the base buglist.cgi URL

Patch By Michael J Tosh <michael.j.tosh@lmco.com> r=mkanat, a=mkanat
parent 5c76819f
......@@ -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)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment