From: Frédéric Buclin Date: Sat, 21 Dec 2013 16:45:40 +0000 (+0100) Subject: Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non... X-Git-Tag: bugzilla-4.2.8~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2823e7d3d291c77bf4bef8c1576076ed44c2185c;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 57fa9624e6..ace4746356 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);