From: Daniel Friesen Date: Wed, 7 Sep 2011 01:12:00 +0000 (+0000) Subject: Followup r96217, slight regression use rawElement not element, accidentally caused... X-Git-Tag: 1.31.0-rc.0~27853 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=101e09f56e87b25006cca2a544abafb0ddfde368;p=lhc%2Fweb%2Fwiklou.git Followup r96217, slight regression use rawElement not element, accidentally caused the to be htmlescaped. --- 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.