diff options
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 04a2e20dce..2e8c87c04e 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -180,7 +180,7 @@ function unique_id($extra = 'c') * @return bool Either true if the maximum execution time is nearly reached, or false * if some time is still left. */ -function still_on_time() +function still_on_time($extra_time = 15) { static $max_execution_time, $start_time; @@ -194,10 +194,10 @@ function still_on_time() // If zero, then set to something higher to not let the user catch the ten seconds barrier. if ($max_execution_time === 0) { - $max_execution_time = 65; + $max_execution_time = 50 + $extra_time; } - $max_execution_time = min(max(10, ($max_execution_time - 15)), 50); + $max_execution_time = min(max(10, ($max_execution_time - $extra_time)), 50); // For debugging purposes // $max_execution_time = 10; |