]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 513989 - large search query causing internal server error (500) but valid redirec...
authorDavid Lawrence <dkl@redhat.com>
Fri, 5 Mar 2010 18:50:59 +0000 (13:50 -0500)
committerDavid Lawrence <dkl@redhat.com>
Fri, 5 Mar 2010 18:50:59 +0000 (13:50 -0500)
Decreased CGI_URI_LIMIT to 8000 instead of 10000
a=mkanat

Bugzilla/Constants.pm

index 185c60c1f770fd8548a379b6bbdd1af2911e6cdb..d38f123fd56b7bb85fbf8ef745cf1416b5ef442b 100644 (file)
@@ -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.