Print the whole text instead of having some strange syntax that doesn't work (but...
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 6 Jun 2010 14:27:21 +0000 (14:27 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sun, 6 Jun 2010 14:27:21 +0000 (14:27 +0000)
maintenance/updaters.inc

index f06b71e..1feeacb 100644 (file)
@@ -1283,10 +1283,12 @@ function do_category_population() {
                return;
        }
        require_once( 'populateCategory.php' );
-       wfOut( "Populating category table, printing progress markers.  " ) .
-"For large databases, you\n" .
-"may want to hit Ctrl-C and do this manually with maintenance/\n" .
-"populateCategory.php.\n";
+       wfOut(
+               "Populating category table, printing progress markers. " .
+               "For large databases, you\n" .
+               "may want to hit Ctrl-C and do this manually with maintenance/\n" .
+               "populateCategory.php.\n"
+       );
        $task = new PopulateCategory();
        $task->execute();
        wfOut( "Done populating category table.\n" );