diff options
| author | Nick Palmer <nick@sluggardy.net> | 2007-09-26 16:22:52 +0000 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2007-09-26 16:22:52 +0000 |
| commit | acfe39990acc7ca51152c50b29cd6921194faa85 (patch) | |
| tree | e92dfba73f9488bba58e9a16b67af8b9d27899b9 /install_checks.php | |
| parent | 3e0bbbea4e3100f498617467bda6b1b97f297f02 (diff) | |
| download | install-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.php | 4 |
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; |
