From 5f1bb709f8ba43782fd6451c7931d5b4af175a87 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Tue, 22 Jul 2003 11:14:29 +0000 Subject: [PATCH] Move page not just for sysops in bottomLinks() --- includes/Skin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(); } -- 2.20.1