Fix test failures caused by Bug 762787

git-svn-id: svn://10.0.0.236/trunk@263993 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2012-06-27 07:00:46 +00:00
parent 0ceeee8123
commit ec2e8dec8f
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8275 8276

View File

@ -569,7 +569,7 @@ use constant PASSWORD_SALT_LENGTH => 8;
# via POST such as buglist.cgi. This value determines whether the redirect # 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. # can be safely done or not based on the web server's URI length setting.
# See http://support.microsoft.com/kb/208427 for why MSIE is different # See http://support.microsoft.com/kb/208427 for why MSIE is different
use constant CGI_URI_LIMIT => $ENV{'HTTP_USER_AGENT'} =~ /MSIE/ ? 2083 : 8000; use constant CGI_URI_LIMIT => ($ENV{'HTTP_USER_AGENT'} || '') =~ /MSIE/ ? 2083 : 8000;
# If the user isn't allowed to change a field, we must tell him who can. # If the user isn't allowed to change a field, we must tell him who can.
# We store the required permission set into the $PrivilegesRequired # We store the required permission set into the $PrivilegesRequired