From: Tim Starling Date: Tue, 22 Jul 2003 11:14:29 +0000 (+0000) Subject: Move page not just for sysops in bottomLinks() X-Git-Tag: 1.1.0~380 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=5f1bb709f8ba43782fd6451c7931d5b4af175a87;p=lhc%2Fweb%2Fwiklou.git Move page not just for sysops in bottomLinks() --- diff --git a/includes/Skin.php b/includes/Skin.php index 9164caaa34..c1e51d5b60 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -514,7 +514,8 @@ class Skin { if ( $wgOut->isArticle() ) { $s .= "" . $this->editThisPage() . ""; if ( 0 != $wgUser->getID() ) { - $s .= $sep . $this->watchThisPage(); + $s .= $sep . $this->watchThisPage() . + $sep . $this->moveThisPage(); } $s .= $sep . $this->talkLink() . $sep . $this->historyLink() @@ -539,8 +540,7 @@ class Skin { } if ( $wgUser->isSysop() && $wgTitle->getArticleId() ) { $s .= "\n
" . $this->deleteThisPage() . - $sep . $this->protectThisPage() . - $sep . $this->moveThisPage(); + $sep . $this->protectThisPage(); } $s .= "
\n" . $this->otherLanguages(); }