From 101e09f56e87b25006cca2a544abafb0ddfde368 Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Wed, 7 Sep 2011 01:12:00 +0000 Subject: [PATCH] Followup r96217, slight regression use rawElement not element, accidentally caused the to be htmlescaped. --- includes/SkinTemplate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index e3435c4b6b..5863c47f53 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -490,7 +490,7 @@ class SkinTemplate extends Skin { // Append printfooter and debughtml onto bodytext so that skins that were already // using bodytext before they were split out don't suddenly start not outputting information - $tpl->data['bodytext'] .= Html::element( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n"; + $tpl->data['bodytext'] .= Html::rawElement( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n"; $tpl->data['bodytext'] .= $tpl->data['debughtml']; // allow extensions adding stuff after the page content. -- 2.20.1