From 48c196828fe6128f4de132cc0b1df6808898c651 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 15 Feb 2010 20:08:39 +0000 Subject: [PATCH] Revert r62421. Removing "set_time_limit( 0 );" causes all kinds of time out issues running command line scripts in both maintenance/ and with cli scripts in extensions. --- maintenance/Maintenance.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index 3a1c28e934..8dc9d5324a 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -638,6 +638,7 @@ abstract class Maintenance { } $wgShowSQLErrors = true; + @set_time_limit( 0 ); ini_set( 'memory_limit', $this->memoryLimit() ); $wgProfiling = false; // only for Profiler.php mode; avoids OOM errors -- 2.20.1