From 3cbf249bea200c1bade0104a78e1f161ce52415d Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 12 Oct 2009 09:48:04 +0000 Subject: [PATCH] "setting minimum php version to 5.2" --- phpgwapi/inc/functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/functions.inc.php b/phpgwapi/inc/functions.inc.php index f4ce7fe3e2..0cd78cf75b 100644 --- a/phpgwapi/inc/functions.inc.php +++ b/phpgwapi/inc/functions.inc.php @@ -23,7 +23,7 @@ if (function_exists('get_magic_quotes_runtime') && get_magic_quotes_runtime()) set_magic_quotes_runtime(false); } -$egw_min_php_version = '5.1'; +$egw_min_php_version = '5.2'; if (!function_exists('version_compare') || version_compare(PHP_VERSION,$egw_min_php_version) < 0) { die("eGroupWare requires PHP $egw_min_php_version or greater.
Please contact your System Administrator to upgrade PHP!");