When running PHP from the command line the default setting is 0...except when it's not.

This commit is contained in:
Chad Horohoe 2009-08-15 20:56:11 +00:00
parent 047a82aa3c
commit b629a66fed

View file

@ -327,6 +327,11 @@ abstract class Maintenance {
# Set the memory limit
ini_set( 'memory_limit', -1 );
# Set max execution time to 0 (no limit). PHP.net says that
# "When running PHP from the command line the default setting is 0."
# But sometimes this doesn't seem to be the case.
ini_set( 'max_execution_time', 0 );
$wgRequestTime = microtime( true );
# Define us as being in MediaWiki