summaryrefslogtreecommitdiffstats
path: root/Bugzilla/CGI.pm
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2004-07-22 16:07:56 +0200
committerbugreport%peshkin.net <>2004-07-22 16:07:56 +0200
commit18c5b1f487d7d740f59527ea7c966ccb23a4b8c2 (patch)
treef924d35d3bdf91bceefca011b7262fec838dc7b0 /Bugzilla/CGI.pm
parent2f277c17556cb14fe4f19a83ebd3c452bcbbb99a (diff)
downloadbugzilla-18c5b1f487d7d740f59527ea7c966ccb23a4b8c2.tar.gz
bugzilla-18c5b1f487d7d740f59527ea7c966ccb23a4b8c2.tar.xz
Bug 252388: Fix undef warning when Bugzilla->cgi->header() is called twice
r=jouni a=justdave
Diffstat (limited to 'Bugzilla/CGI.pm')
-rw-r--r--Bugzilla/CGI.pm2
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