Comment
authorAaron Schulz <aaron@users.mediawiki.org>
Tue, 13 May 2008 06:39:55 +0000 (06:39 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Tue, 13 May 2008 06:39:55 +0000 (06:39 +0000)
includes/SpecialRecentchanges.php

index 1d2e108..70f5b1c 100644 (file)
@@ -173,7 +173,7 @@ function wfSpecialRecentchanges( $par, $specialPage ) {
        $hidem = is_null($namespace) ?  '' : ' AND rc_namespace' . ($invert ? '!=' : '=') . $namespace;
        
        // Is there either one namespace selected or excluded?
-       // Also, if this is the main namespace, just use timestamp index.
+       // Also, if this is "all" or main namespace, just use timestamp index.
        if( is_null($namespace) || $invert || $namespace == NS_MAIN ) {
                $res = $dbr->select( $tables, '*',
                        array( "rc_timestamp >= '{$cutoff}' {$hidem}" ),