From: Alexandre Emsenhuber Date: Sun, 6 Jun 2010 14:27:21 +0000 (+0000) Subject: Print the whole text instead of having some strange syntax that doesn't work (but... X-Git-Tag: 1.31.0-rc.0~36605 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=110755bc89f5d4122724bab28f8ea18bf8823407;p=lhc%2Fweb%2Fwiklou.git Print the whole text instead of having some strange syntax that doesn't work (but compile without errors...) --- 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" );