mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
"Fixes #3862, set_time_limit(0) has no effect because of ini_set('max_execution_time', 60 * 5);
changed max_execution_time , 0. Since php 4.3 this is the default anyway" git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6340 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
acd9cd5b8a
commit
15be9d3cb9
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class ShellDispatcher {
|
||||||
ini_set('error_reporting', E_ALL);
|
ini_set('error_reporting', E_ALL);
|
||||||
ini_set('html_errors', false);
|
ini_set('html_errors', false);
|
||||||
ini_set('implicit_flush', true);
|
ini_set('implicit_flush', true);
|
||||||
ini_set('max_execution_time', 60 * 5);
|
ini_set('max_execution_time', 0);
|
||||||
}
|
}
|
||||||
define('PHP5', (phpversion() >= 5));
|
define('PHP5', (phpversion() >= 5));
|
||||||
define('DS', DIRECTORY_SEPARATOR);
|
define('DS', DIRECTORY_SEPARATOR);
|
||||||
|
|
Loading…
Reference in a new issue