summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-06-02 21:48:31 +0200
committerAndreas Gohr <andi@splitbrain.org>2013-06-08 13:13:37 +0200
commitce0343e9cc0c61966aca9328bab838ef9f35677d (patch)
tree3b1eb3ad766e63e907d2eeaf9374d6ced217575a /inc
parent4545b60b9572d03f7f5f399c12cb102675441120 (diff)
downloadrpg-ce0343e9cc0c61966aca9328bab838ef9f35677d.tar.gz
rpg-ce0343e9cc0c61966aca9328bab838ef9f35677d.tar.bz2
we now require PHP 5.2.0 at least
Diffstat (limited to 'inc')
-rw-r--r--inc/infoutils.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php
index 9fe5ee689..71e642995 100644
--- a/inc/infoutils.php
+++ b/inc/infoutils.php
@@ -107,8 +107,8 @@ function check(){
msg('DokuWiki version: '.getVersion(),1);
}
- if(version_compare(phpversion(),'5.1.2','<')){
- msg('Your PHP version is too old ('.phpversion().' vs. 5.1.2+ needed)',-1);
+ if(version_compare(phpversion(),'5.2.0','<')){
+ msg('Your PHP version is too old ('.phpversion().' vs. 5.2.0+ needed)',-1);
}else{
msg('PHP version '.phpversion(),1);
}