diff --git a/core/config.class.inc.php b/core/config.class.inc.php index a47fd0b700..90d13edb88 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -489,11 +489,11 @@ class Config 'show_in_conf_sample' => true, ], 'cron_max_execution_time' => [ - 'type' => 'integer', - 'description' => 'Duration (seconds) of the page cron.php, must be shorter than php setting max_execution_time and shorter than the web server response timeout', - 'default' => 600, - 'value' => 600, - 'source_of_value' => '', + 'type' => 'integer', + 'description' => 'Duration (seconds) of the cron.php script : if exceeded the script will exit even if there are remaining tasks to process. Must be shorter than php max_execution_time setting (note than when using CLI, this is set to 0 by default which means unlimited). If cron.php is ran via web, it must be shorter than the web server response timeout.', + 'default' => 600, + 'value' => 600, + 'source_of_value' => '', 'show_in_conf_sample' => true, ], 'cron_task_max_execution_time' => [ diff --git a/setup/compiler.class.inc.php b/setup/compiler.class.inc.php index 89b1e50882..b7511bed1c 100644 --- a/setup/compiler.class.inc.php +++ b/setup/compiler.class.inc.php @@ -3585,6 +3585,8 @@ EOF; * @param $sRelativeDir * * @throws \Exception + * + * @since 2.7.0 N°2498 */ protected function WriteStaticOnlyHtaccess($sTempTargetDir) { @@ -3626,6 +3628,8 @@ EOF; * @param $sModuleVersion * * @throws \Exception + * + * @since 2.7.0 N°2498 */ protected function WriteStaticOnlyWebConfig($sTempTargetDir) {