diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-06-02 21:48:31 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-06-08 13:13:37 +0200 |
commit | ce0343e9cc0c61966aca9328bab838ef9f35677d (patch) | |
tree | 3b1eb3ad766e63e907d2eeaf9374d6ced217575a /install.php | |
parent | 4545b60b9572d03f7f5f399c12cb102675441120 (diff) | |
download | rpg-ce0343e9cc0c61966aca9328bab838ef9f35677d.tar.gz rpg-ce0343e9cc0c61966aca9328bab838ef9f35677d.tar.bz2 |
we now require PHP 5.2.0 at least
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
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; } |