From: Aryeh Gregor Date: Tue, 3 Aug 2010 21:07:13 +0000 (+0000) Subject: Don't run updateCollations if they're up-to-date X-Git-Tag: 1.31.0-rc.0~35742 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=5a94b9684a288c7631f60eb1065b30fe75c9ac82;p=lhc%2Fweb%2Fwiklou.git Don't run updateCollations if they're up-to-date I forgot a "return;" here. --- diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index 748d46feaf..fc92e84294 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -1095,6 +1095,7 @@ function do_collation_update() { __FUNCTION__ ) == 0 ) { wfOut( "...collations up-to-date.\n" ); + return; } require_once( 'updateCollation.php' ); $task = new UpdateCollation();