From f59941c4767895e33a9e9f59301fb5789bf42384 Mon Sep 17 00:00:00 2001 From: Krinkle Date: Mon, 9 May 2011 17:51:17 +0000 Subject: [PATCH] Fix fixme: r87340: Remove slashes from double quote escape in single quote string. --- includes/SkinLegacy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SkinLegacy.php b/includes/SkinLegacy.php index fc82834381..81638915ca 100644 --- a/includes/SkinLegacy.php +++ b/includes/SkinLegacy.php @@ -68,7 +68,7 @@ class LegacyTemplate extends BaseTemplate { $this->html( 'headelement' ); echo $this->beforeContent(); $this->html( 'bodytext' ); - echo '
'; + echo '
'; $this->html( 'printfooter' ); echo '
'; $this->html( 'debughtml' ); -- 2.20.1