summaryrefslogtreecommitdiff
path: root/inc/infoutils.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-11-05 21:44:20 +0100
committerAndreas Gohr <andi@splitbrain.org>2006-11-05 21:44:20 +0100
commit3afe5d1c3420a012163ab6794ff63f68acf37c5e (patch)
treea1256531cd9ccd8c419a0b33100418010a84e141 /inc/infoutils.php
parent6b06b65228c9fbd6e8e45658458b14a0e8c2cdfc (diff)
downloadrpg-3afe5d1c3420a012163ab6794ff63f68acf37c5e.tar.gz
rpg-3afe5d1c3420a012163ab6794ff63f68acf37c5e.tar.bz2
PHP version check in the installer
darcs-hash:20061105204420-7ad00-2b80d8ceb37b48ccdaa10545ea6fb9bddb58529b.gz
Diffstat (limited to 'inc/infoutils.php')
-rw-r--r--inc/infoutils.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php
index cdfe49dfd..780a46891 100644
--- a/inc/infoutils.php
+++ b/inc/infoutils.php
@@ -81,8 +81,8 @@ function check(){
msg('DokuWiki version: '.getVersion(),1);
- if(version_compare(phpversion(),'4.3.0','<')){
- msg('Your PHP version is too old ('.phpversion().' vs. 4.3.+ recommended)',-1);
+ if(version_compare(phpversion(),'4.3.3','<')){
+ msg('Your PHP version is too old ('.phpversion().' vs. 4.3.3+ recommended)',-1);
}elseif(version_compare(phpversion(),'4.3.10','<')){
msg('Consider upgrading PHP to 4.3.10 or higher for security reasons (your version: '.phpversion().')',0);
}else{