From: Frédéric Buclin Date: Sat, 21 Dec 2013 16:44:04 +0000 (+0100) Subject: Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non... X-Git-Tag: bugzilla-4.4.2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7aca6339ffbeba43a4b1157123b0d7f063bca441;p=thirdparty%2Fbugzilla.git Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non-cookie based authentication method r=dkl a=justdave --- diff --git a/Bugzilla/Auth/Persist/Cookie.pm b/Bugzilla/Auth/Persist/Cookie.pm index ec212088d8..c9aaef8635 100644 --- a/Bugzilla/Auth/Persist/Cookie.pm +++ b/Bugzilla/Auth/Persist/Cookie.pm @@ -104,7 +104,7 @@ sub logout { $login_cookie = $cookie->value; } else { - $login_cookie = $cgi->cookie("Bugzilla_logincookie"); + $login_cookie = $cgi->cookie("Bugzilla_logincookie") || ''; } trick_taint($login_cookie);