Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -490,7 +490,7 @@ |
491 | 491 | |
492 | 492 | // Append printfooter and debughtml onto bodytext so that skins that were already |
493 | 493 | // using bodytext before they were split out don't suddenly start not outputting information |
494 | | - $tpl->data['bodytext'] .= Html::element( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n"; |
| 494 | + $tpl->data['bodytext'] .= Html::rawElement( 'div', array( 'class' => 'printfooter' ), "\n{$tpl->data['printfooter']}" ) . "\n"; |
495 | 495 | $tpl->data['bodytext'] .= $tpl->data['debughtml']; |
496 | 496 | |
497 | 497 | // allow extensions adding stuff after the page content. |