diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_install_check.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_install_check.inc.php b/templates/show_install_check.inc.php index ecb820bc..d34d12bd 100644 --- a/templates/show_install_check.inc.php +++ b/templates/show_install_check.inc.php @@ -186,7 +186,7 @@ <td> <?php if (!check_php_timelimit()) { - echo debug_result(_('Execution time limit less than recommended') . ' ' . ini_get('max_execution_time'), false); + echo debug_result(sprintf(_('Execution time limit is %s seconds, which is less than recommended'), ini_get('max_execution_time')), false); } else { echo debug_result(ini_get('max_execution_time') . ' ' . _('seconds'),true); |