summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorPaul Arthur <paul.arthur@flowerysong.com>2012-04-09 11:36:52 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2012-04-09 11:36:52 -0400
commit89084a11030c162c4b26496089131726708512df (patch)
treeebe88a2df6e9611a04cc1cde55b710d2b37cc2fc /templates
parent2e2c0919cb8fa7380327e4f156123bcb9f838c32 (diff)
downloadampache-89084a11030c162c4b26496089131726708512df.tar.gz
ampache-89084a11030c162c4b26496089131726708512df.tar.bz2
ampache-89084a11030c162c4b26496089131726708512df.zip
Make the install-time execution time check more better
Diffstat (limited to 'templates')
-rw-r--r--templates/show_install_check.inc.php2
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);