From e826f36d1235091d9618f4ab75b68de72da34d63 Mon Sep 17 00:00:00 2001 From: Marius Hoch Date: Mon, 1 Jun 2015 19:40:41 +0200 Subject: [PATCH] Fix undefined variable $header in HttpError Change-Id: Ie216d1959f2ea903fdbc124b718b4988e08229ae Follows-up: I8b61d7e9ea4101e3a9ef5f9a59a97db45aeef68c --- includes/exception/HttpError.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; } } -- 2.20.1