summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Constants.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@redhat.com>2010-03-05 19:50:59 +0100
committerDavid Lawrence <dkl@redhat.com>2010-03-05 19:50:59 +0100
commitb0f8162ec4e1a226d0d0d6c6f8216d1098a1b98a (patch)
treeeae54e07cfc59c573a78e7bdb9cc899ff774760a /Bugzilla/Constants.pm
parent7fd3117555fb6c54f1ec708a101993fb9c0ff96f (diff)
downloadbugzilla-b0f8162ec4e1a226d0d0d6c6f8216d1098a1b98a.tar.gz
bugzilla-b0f8162ec4e1a226d0d0d6c6f8216d1098a1b98a.tar.xz
Bug 513989 - large search query causing internal server error (500) but valid redirect 302 returned
Decreased CGI_URI_LIMIT to 8000 instead of 10000 a=mkanat
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r--Bugzilla/Constants.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index 185c60c1f..d38f123fd 100644
--- a/Bugzilla/Constants.pm
+++ b/Bugzilla/Constants.pm
@@ -520,7 +520,7 @@ use constant PASSWORD_SALT_LENGTH => 8;
# Certain scripts redirect to GET even if the form was submitted originally
# via POST such as buglist.cgi. This value determines whether the redirect
# can be safely done or not based on the web server's URI length setting.
-use constant CGI_URI_LIMIT => 10000;
+use constant CGI_URI_LIMIT => 8000;
sub bz_locations {
# We know that Bugzilla/Constants.pm must be in %INC at this point.