From 57271d078b9c433bec79d75cb44dadcafeae07df Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Mon, 29 Sep 2014 20:15:27 +0200 Subject: release preparations --- install.php | 1 - 1 file changed, 1 deletion(-) (limited to 'install.php') diff --git a/install.php b/install.php index 767dd332f..c8bc68ef9 100644 --- a/install.php +++ b/install.php @@ -58,7 +58,6 @@ $dokuwiki_hash = array( '2013-05-10' => '7b62b75245f57f122d3e0f8ed7989623', '2013-12-08' => '263c76af309fbf083867c18a34ff5214', '2014-05-05' => '263c76af309fbf083867c18a34ff5214', - 'devel' => 'b3ddc3f793eac8c135176e535054c00a', ); -- cgit v1.2.3 From 001d05eda158fd1c33cd0e6580a28241af69226c Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Tue, 14 Oct 2014 21:32:54 +0200 Subject: new PHP minimum requirement is now 5.3.3 that's the version in Debian old stable --- install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install.php') diff --git a/install.php b/install.php index c8bc68ef9..d13a5eaab 100644 --- a/install.php +++ b/install.php @@ -538,8 +538,8 @@ function check_functions(){ global $lang; $ok = true; - if(version_compare(phpversion(),'5.2.0','<')){ - $error[] = sprintf($lang['i_phpver'],phpversion(),'5.2.0'); + if(version_compare(phpversion(),'5.3.3','<')){ + $error[] = sprintf($lang['i_phpver'],phpversion(),'5.3.3'); $ok = false; } -- cgit v1.2.3