From: Aaron Schulz Date: Thu, 18 Dec 2008 23:09:49 +0000 (+0000) Subject: Streamline links a bit X-Git-Tag: 1.31.0-rc.0~43888 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=98e15bf9adf72f94537829edf43d143437cf99df;p=lhc%2Fweb%2Fwiklou.git Streamline links a bit --- 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();