]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 252388: Fix undef warning when Bugzilla->cgi->header() is called twice
authorbugreport%peshkin.net <>
Thu, 22 Jul 2004 14:08:46 +0000 (14:08 +0000)
committerbugreport%peshkin.net <>
Thu, 22 Jul 2004 14:08:46 +0000 (14:08 +0000)
r=jouni
a=justdave

Bugzilla/CGI.pm

index 21cfa19b2b282faccadaf87bd37c2e1fec0b396a..537c67da58633fa4bca5b76538275a24e2fceaee 100644 (file)
@@ -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