From 18c5b1f487d7d740f59527ea7c966ccb23a4b8c2 Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Thu, 22 Jul 2004 14:07:56 +0000 Subject: Bug 252388: Fix undef warning when Bugzilla->cgi->header() is called twice r=jouni a=justdave --- Bugzilla/CGI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/CGI.pm b/Bugzilla/CGI.pm index 21cfa19b2..537c67da5 100644 --- a/Bugzilla/CGI.pm +++ b/Bugzilla/CGI.pm @@ -142,7 +142,7 @@ sub header { unshift(@_, '-cookie' => $self->{Bugzilla_cookie_list}); } - return $self->SUPER::header(@_); + return $self->SUPER::header(@_) || ""; } # We override the entirety of multipart_start instead of falling through to -- cgit v1.2.3-24-g4f1b