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


git-svn-id: svn://10.0.0.236/branches/BUGZILLA-3_4-BRANCH@259886 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2010-03-05 19:03:37 +00:00
parent 91a808202a
commit 447cd45d89
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
6735
6736

View File

@ -467,7 +467,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.