diff options
-rw-r--r-- | engine/lib/install.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/engine/lib/install.php b/engine/lib/install.php index 41561ae96..e9ae5279b 100644 --- a/engine/lib/install.php +++ b/engine/lib/install.php @@ -18,14 +18,16 @@ * @return bool */ function php_check_version() - { + {
+ /* if ( // TODO: Remove this when Redhat pulls its finger out (version_compare(phpversion(), '5.1.6', '>=')) && (version_compare(phpversion(), '5.2.0', '<')) ) - register_error(elgg_echo('configurationwarning:phpversion')); + register_error(elgg_echo('configurationwarning:phpversion'));
+ */ - if (version_compare(phpversion(), '5.1.6', '>=')) + if (version_compare(phpversion(), '5.1.2', '>=')) return true; return false; |