From d0fcb1af799579e1001382dfeb31cd6e85acd660 Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Mon, 14 May 2007 07:40:10 +0000 Subject: [PATCH] It's dead code, Jim! --- includes/Skin.php | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index c038738fb7..e53d579200 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1428,29 +1428,6 @@ END; return $s; } - function dateLink() { - $t1 = Title::newFromText( gmdate( 'F j' ) ); - $t2 = Title::newFromText( gmdate( 'Y' ) ); - - $id = $t1->getArticleID(); - - if ( 0 == $id ) { - $s = $this->makeBrokenLink( $t1->getText() ); - } else { - $s = $this->makeKnownLink( $t1->getText() ); - } - $s .= ', '; - - $id = $t2->getArticleID(); - - if ( 0 == $id ) { - $s .= $this->makeBrokenLink( $t2->getText() ); - } else { - $s .= $this->makeKnownLink( $t2->getText() ); - } - return $s; - } - function talkLink() { global $wgTitle; -- 2.20.1