From: Daniel Friesen Date: Mon, 4 Apr 2011 00:42:52 +0000 (+0000) Subject: Remove a dead patch of Skin code that was migrated completely into SkinLegacy and... X-Git-Tag: 1.31.0-rc.0~31037 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=7d0622b0cc5ec5d10eaf4b8da58a2d91c4ddda03;p=lhc%2Fweb%2Fwiklou.git Remove a dead patch of Skin code that was migrated completely into SkinLegacy and SkinTemplate already. --- diff --git a/includes/Skin.php b/includes/Skin.php index e326339224..9efb3f7322 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -323,39 +323,8 @@ abstract class Skin { /** * Outputs the HTML generated by other functions. * @param $out Object: instance of OutputPage - * @todo Exterminate! */ - function outputPage( OutputPage $out ) { - global $wgDebugComments; - wfProfileIn( __METHOD__ ); - - $this->initPage( $out ); - - // See self::afterContentHook() for documentation - $afterContent = $this->afterContentHook(); - - $out->out( $out->headElement( $this ) ); - - if ( $wgDebugComments ) { - $out->out( "\n" ); - } - - $out->out( $this->beforeContent() ); - - $out->out( $out->mBodytext . "\n" ); - - $out->out( $this->afterContent() ); - - $out->out( $afterContent ); - - $out->out( $this->bottomScripts( $out ) ); - - $out->out( wfReportTime() ); - - $out->out( "\n" ); - wfProfileOut( __METHOD__ ); - } + abstract function outputPage( OutputPage $out ); static function makeVariablesScript( $data ) { if ( $data ) {