From 110755bc89f5d4122724bab28f8ea18bf8823407 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sun, 6 Jun 2010 14:27:21 +0000 Subject: [PATCH] Print the whole text instead of having some strange syntax that doesn't work (but compile without errors...) --- maintenance/updaters.inc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index f06b71e10d..1feeacbdc3 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -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" ); -- 2.20.1