summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-06-02 21:48:31 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-06-02 21:48:56 +0200
commit21c9604e66bcb42ab5267e9873738a6e22250103 (patch)
treef1a51d246db95454e9b7be071ced6cffcd7459f5 /install.php
parent007becf8ef443a6da5c94e5d53cf4e92cb4b44cc (diff)
downloadrpg-21c9604e66bcb42ab5267e9873738a6e22250103.tar.gz
rpg-21c9604e66bcb42ab5267e9873738a6e22250103.tar.bz2
we now require PHP 5.2.0 at least
Diffstat (limited to 'install.php')
-rw-r--r--install.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php
index 24f06608d..ab0fad121 100644
--- a/install.php
+++ b/install.php
@@ -518,8 +518,8 @@ function check_functions(){
global $lang;
$ok = true;
- if(version_compare(phpversion(),'5.1.2','<')){
- $error[] = sprintf($lang['i_phpver'],phpversion(),'5.1.2');
+ if(version_compare(phpversion(),'5.2.0','<')){
+ $error[] = sprintf($lang['i_phpver'],phpversion(),'5.2.0');
$ok = false;
}