Commit 18c5b1f4 authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

Bug 252388: Fix undef warning when Bugzilla->cgi->header() is called twice

r=jouni a=justdave
parent 2f277c17
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment