summaryrefslogtreecommitdiff
path: root/install_checks.php
diff options
context:
space:
mode:
authorNick Palmer <nick@sluggardy.net>2007-09-26 16:22:52 +0000
committerNick Palmer <nick@sluggardy.net>2007-09-26 16:22:52 +0000
commitacfe39990acc7ca51152c50b29cd6921194faa85 (patch)
treee92dfba73f9488bba58e9a16b67af8b9d27899b9 /install_checks.php
parent3e0bbbea4e3100f498617467bda6b1b97f297f02 (diff)
downloadinstall-acfe39990acc7ca51152c50b29cd6921194faa85.tar.gz
install-acfe39990acc7ca51152c50b29cd6921194faa85.tar.bz2
install-acfe39990acc7ca51152c50b29cd6921194faa85.zip
Fix parse to handle duplicate tags properly and bump required version to PHP 4.3.
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 3580fdd..23db8ba 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.26 2007/07/01 09:50:17 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_install/install_checks.php,v 1.27 2007/09/26 16:22:52 nickpalmer 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;