From e8744c5ca21fdb8ae0ae5b5033df662d5f753da7 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Thu, 5 Dec 2013 23:43:34 +0100 Subject: Bug 942599: Documentation about possible_duplicates() lists 'products' as argument instead of 'product' r=dkl a=justdave --- Bugzilla/WebService/Bug.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 9ccd84cc2..eb76b4131 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -2037,7 +2037,7 @@ narrowed down to specific products. =item C (string) B - A string of keywords defining the type of bug you are trying to report. -=item C (array) - One or more product names to narrow the +=item C (array) - One or more product names to narrow the duplicate search to. If omitted, all bugs are searched. =back -- cgit v1.2.3-24-g4f1b From 2823e7d3d291c77bf4bef8c1576076ed44c2185c Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sat, 21 Dec 2013 17:45:40 +0100 Subject: Bug 748095: Bugzilla crashes when the shutdownhtml parameter is set and using a non-cookie based authentication method r=dkl a=justdave --- Bugzilla/Auth/Persist/Cookie.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3-24-g4f1b