Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1160,15 +1160,11 @@ |
1161 | 1161 | global $wgOut; |
1162 | 1162 | $sep = " |\n"; |
1163 | 1163 | |
1164 | | - $s = $this->mainPageLink() . $sep |
1165 | | - . $this->specialLink( 'recentchanges' ); |
| 1164 | + $s = $this->mainPageLink(); |
1166 | 1165 | |
1167 | 1166 | if ( $wgOut->isArticleRelated() ) { |
1168 | | - $s .= $sep . $this->editThisPage() |
1169 | | - . $sep . $this->historyLink(); |
| 1167 | + $s .= $sep . $this->editThisPage() . $sep . $this->historyLink(); |
1170 | 1168 | } |
1171 | | - # Many people don't like this dropdown box |
1172 | | - #$s .= $sep . $this->specialPagesList(); |
1173 | 1169 | |
1174 | 1170 | $s .= $this->variantLinks(); |
1175 | 1171 | |