From 7d0622b0cc5ec5d10eaf4b8da58a2d91c4ddda03 Mon Sep 17 00:00:00 2001 From: Daniel Friesen Date: Mon, 4 Apr 2011 00:42:52 +0000 Subject: [PATCH] Remove a dead patch of Skin code that was migrated completely into SkinLegacy and SkinTemplate already. --- includes/Skin.php | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) 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 ) { -- 2.20.1