Magic numbers are evil, use named constants.
authorAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 9 Jul 2007 21:16:58 +0000 (21:16 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Mon, 9 Jul 2007 21:16:58 +0000 (21:16 +0000)
includes/UserMailer.php

index 6e6bbf0..fc8bbbd 100644 (file)
@@ -240,7 +240,7 @@ class EmailNotification {
                global $wgEnotifUseJobQ;
                global $wgEnotifWatchlist, $wgShowUpdatedMarker;
 
-               if( $title->getNamespace() < 0 )
+               if( $title->getNamespace() == NS_SPECIAL )
                        return;
 
                if ($wgEnotifUseJobQ) {