diff options
author | bugreport%peshkin.net <> | 2004-07-22 16:07:56 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-07-22 16:07:56 +0200 |
commit | 18c5b1f487d7d740f59527ea7c966ccb23a4b8c2 (patch) | |
tree | f924d35d3bdf91bceefca011b7262fec838dc7b0 | |
parent | 2f277c17556cb14fe4f19a83ebd3c452bcbbb99a (diff) | |
download | bugzilla-18c5b1f487d7d740f59527ea7c966ccb23a4b8c2.tar.gz bugzilla-18c5b1f487d7d740f59527ea7c966ccb23a4b8c2.tar.xz |
Bug 252388: Fix undef warning when Bugzilla->cgi->header() is called twice
r=jouni
a=justdave
-rw-r--r-- | Bugzilla/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |