From: David Lawrence Date: Fri, 5 Mar 2010 18:50:59 +0000 (-0500) Subject: Bug 513989 - large search query causing internal server error (500) but valid redirec... X-Git-Tag: bugzilla-3.7.1~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0f8162ec4e1a226d0d0d6c6f8216d1098a1b98a;p=thirdparty%2Fbugzilla.git 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 --- diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 185c60c1f7..d38f123fd5 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.