From 5a94b9684a288c7631f60eb1065b30fe75c9ac82 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Tue, 3 Aug 2010 21:07:13 +0000 Subject: [PATCH] Don't run updateCollations if they're up-to-date I forgot a "return;" here. --- maintenance/updaters.inc | 1 + 1 file changed, 1 insertion(+) 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(); -- 2.20.1