From 98e15bf9adf72f94537829edf43d143437cf99df Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 18 Dec 2008 23:09:49 +0000 Subject: [PATCH] Streamline links a bit --- includes/Skin.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index 4eab2f4364..e115895892 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1160,15 +1160,11 @@ END; global $wgOut; $sep = " |\n"; - $s = $this->mainPageLink() . $sep - . $this->specialLink( 'recentchanges' ); + $s = $this->mainPageLink(); if ( $wgOut->isArticleRelated() ) { - $s .= $sep . $this->editThisPage() - . $sep . $this->historyLink(); + $s .= $sep . $this->editThisPage() . $sep . $this->historyLink(); } - # Many people don't like this dropdown box - #$s .= $sep . $this->specialPagesList(); $s .= $this->variantLinks(); -- 2.20.1