summaryrefslogtreecommitdiff
path: root/install_checks.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-04-13 09:26:23 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-04-13 09:26:23 +0000
commit5580f48916e569f7d6607645dff19c265d0209b4 (patch)
tree0c0ab2aba32764405ff2732503aae860bb05100d /install_checks.php
parentfcca10235a239d78b84a2a1851010ca331376151 (diff)
downloadinstall-5580f48916e569f7d6607645dff19c265d0209b4.tar.gz
install-5580f48916e569f7d6607645dff19c265d0209b4.tar.bz2
install-5580f48916e569f7d6607645dff19c265d0209b4.zip
minor beautification of output text
Diffstat (limited to 'install_checks.php')
-rw-r--r--install_checks.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install_checks.php b/install_checks.php
index 55413bf..afe43ed 100644
--- a/install_checks.php
+++ b/install_checks.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.10 2006/01/14 19:54:34 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.11 2006/04/13 09:26:23 squareing Exp $
* @package install
* @subpackage functions
*/
@@ -53,7 +53,7 @@ function check_settings() {
$required[$i]['note'] = 'The configuration file \'<strong>'.$config_file.'</strong>\' is available but the file is not writeable. Please execute something like:<br />chmod 777 '.$config_file;
$required[$i]['passed'] = FALSE;
} else {
- $required[$i]['note'] = 'The configuration file \'<strong>'.$config_file.'</strong>\' is not available. Please execute something like:<br />touch '.KERNEL_PKG_PATH.'config_inc.php; chmod 777 '.$config_file;
+ $required[$i]['note'] = 'The configuration file \'<strong>'.$config_file.'</strong>\' is not available. Please execute something like:<br />touch '.$config_file.';<br />chmod 777 '.$config_file;
$required[$i]['passed'] = FALSE;
}
$i++;