summaryrefslogtreecommitdiff
path: root/install_checks.php
diff options
context:
space:
mode:
authorStephan Borg <wolff_borg@users.sourceforge.net>2008-07-06 07:31:21 +0000
committerStephan Borg <wolff_borg@users.sourceforge.net>2008-07-06 07:31:21 +0000
commitc3998b05a91fee3d707f430e31af9cbc02dbae00 (patch)
tree081ca075b053bb2426d9f1e48b63cb8d844359b8 /install_checks.php
parent73dd07c6f1a33aa5a9dc9c06bef97b253ef68b99 (diff)
downloadinstall-c3998b05a91fee3d707f430e31af9cbc02dbae00.tar.gz
install-c3998b05a91fee3d707f430e31af9cbc02dbae00.tar.bz2
install-c3998b05a91fee3d707f430e31af9cbc02dbae00.zip
Reverted change back to PHP 4.3.0
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 03578eb..8c7e765 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.34 2008/07/06 06:17:01 wolff_borg Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.35 2008/07/06 07:31:21 wolff_borg Exp $
* @package install
* @subpackage functions
* @author xing
@@ -33,7 +33,7 @@ function check_settings() {
$i = 0;
// required settings - if not met, are passed into the array $reqd
// PHP system checks
- $phpvers = '4.1.0';
+ $phpvers = '4.3.0';
if( phpversion() < $phpvers ) {
$required[$i]['note'] = '<strong>PHP version</strong> should be greater than <strong>'.$phpvers.'</strong>.<br />Your installed version of PHP is <strong>'.phpversion().'</strong>.';
$required[$i]['passed'] = FALSE;