summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-09-12 05:09:19 +0200
committermkanat%bugzilla.org <>2008-09-12 05:09:19 +0200
commit8e770628c3c39ada722c0a71348f854f29e34a6c (patch)
treee70f4ebf5789f309542bf1afc8f71ad83dcce1a8 /buglist.cgi
parent0e194f1266c1189ceb63a8c61660bddf8c48731e (diff)
downloadbugzilla-8e770628c3c39ada722c0a71348f854f29e34a6c.tar.gz
bugzilla-8e770628c3c39ada722c0a71348f854f29e34a6c.tar.xz
Bug 15089: Make buglist.cgi shorten search URLs by cleaning them and then redirecting with the cleaned URL.
Patch By Mikhail Gusarov <dottedmag@altlinux.org> r=mkanat, a=mkanat
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi11
1 files changed, 11 insertions, 0 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 6619fdd65..687146ed6 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -66,6 +66,17 @@ if (length($buffer) == 0) {
ThrowUserError("buglist_parameters_required");
}
+#
+# If query was POSTed, clean the URL from empty parameters and redirect back to
+# itself. This will make advanced search URLs more tolerable.
+#
+if ($cgi->request_method() eq 'POST') {
+ $cgi->clean_search_url();
+
+ print $cgi->redirect(-url => $cgi->self_url());
+ exit;
+}
+
# Determine whether this is a quicksearch query.
my $searchstring = $cgi->param('quicksearch');
if (defined($searchstring)) {