From: Marius Hoch Date: Mon, 1 Jun 2015 17:40:41 +0000 (+0200) Subject: Fix undefined variable $header in HttpError X-Git-Tag: 1.31.0-rc.0~11230 X-Git-Url: http://git.cyclocoop.org/clavettes/images/siteon3.jpg?a=commitdiff_plain;h=e826f36d1235091d9618f4ab75b68de72da34d63;p=lhc%2Fweb%2Fwiklou.git Fix undefined variable $header in HttpError Change-Id: Ie216d1959f2ea903fdbc124b718b4988e08229ae Follows-up: I8b61d7e9ea4101e3a9ef5f9a59a97db45aeef68c --- diff --git a/includes/exception/HttpError.php b/includes/exception/HttpError.php index 21d493a82f..aba9176c6e 100644 --- a/includes/exception/HttpError.php +++ b/includes/exception/HttpError.php @@ -128,6 +128,6 @@ class HttpError extends MWException { return "\n" . "$titleHtml\n" . - "

$header

$contentHtml

\n"; + "

$titleHtml

$contentHtml

\n"; } }