summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Auth
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-12-21 17:45:40 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-12-21 17:45:40 +0100
commit2823e7d3d291c77bf4bef8c1576076ed44c2185c (patch)
tree564fd79b5399920bd7000e6ece391d17c5f67c6b /Bugzilla/Auth
parente8744c5ca21fdb8ae0ae5b5033df662d5f753da7 (diff)
downloadbugzilla-2823e7d3d291c77bf4bef8c1576076ed44c2185c.tar.gz
bugzilla-2823e7d3d291c77bf4bef8c1576076ed44c2185c.tar.xz
Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non-cookie based authentication method
r=dkl a=justdave
Diffstat (limited to 'Bugzilla/Auth')
-rw-r--r--Bugzilla/Auth/Persist/Cookie.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Auth/Persist/Cookie.pm b/Bugzilla/Auth/Persist/Cookie.pm
index 57fa9624e..ace474635 100644
--- a/Bugzilla/Auth/Persist/Cookie.pm
+++ b/Bugzilla/Auth/Persist/Cookie.pm
@@ -127,7 +127,7 @@ sub logout {
$login_cookie = $cookie->value;
}
else {
- $login_cookie = $cgi->cookie("Bugzilla_logincookie");
+ $login_cookie = $cgi->cookie("Bugzilla_logincookie") || '';
}
trick_taint($login_cookie);