From 5424706764096a6e91d46279b387261a6c285613 Mon Sep 17 00:00:00 2001 From: Arne Heizmann Date: Sat, 14 Aug 2004 22:21:30 +0000 Subject: [PATCH] English --- includes/SpecialMovepage.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SpecialMovepage.php b/includes/SpecialMovepage.php index bbb2de9de0..ee7342a1f7 100644 --- a/includes/SpecialMovepage.php +++ b/includes/SpecialMovepage.php @@ -121,15 +121,15 @@ class MovePageForm { return; } - # Update counters if the article got moved in or out of NS_MAIN namespace + # Update counters if the article got moved into or out of NS_MAIN namespace $ons = $ot->getNamespace(); $nns = $nt->getNamespace(); - # moved out of article namespace ? + # moved out of article namespace? if ( $ons == NS_MAIN and $nns != NS_MAIN ) { $u = new SiteStatsUpdate( 0, 1, -1); # not viewed, edited, removing } - # moved in article namespace ? + # moved into article namespace? elseif ( $ons != NS_MAIN and $nns == NS_MAIN ) { $u = new SiteStatsUpdate( 0, 1, +1 ); # not viewed, edited, adding } -- 2.20.1