From: Arne Heizmann Date: Sat, 14 Aug 2004 22:21:30 +0000 (+0000) Subject: English X-Git-Tag: 1.5.0alpha1~2350 X-Git-Url: https://git.cyclocoop.org/%20%27.%28%24debut%20%20%20%24par_page%29.%27?a=commitdiff_plain;h=5424706764096a6e91d46279b387261a6c285613;p=lhc%2Fweb%2Fwiklou.git English --- 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 }