From 4b5a25ea599a69f4a0bdf5315f4323dda79a008f Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Tue, 19 Oct 2010 12:45:48 +0000 Subject: [PATCH] Fixed Trac #278: better detection of all PHP mandatory modules. SVN:trunk[897] --- setup/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/index.php b/setup/index.php index e93a95481..c9ed49ceb 100644 --- a/setup/index.php +++ b/setup/index.php @@ -166,7 +166,7 @@ function CheckPHPVersion(SetupWebPage $oP) $oP->error("Error: The current PHP Version (".phpversion().") is lower than the minimum required version (".PHP_MIN_VERSION.")"); return false; } - $aMandatoryExtensions = array('mysql', 'iconv', 'simplexml', 'soap'); + $aMandatoryExtensions = array('mysql', 'iconv', 'simplexml', 'soap', 'hash', 'json', 'session', 'pcre'); $aOptionalExtensions = array('mcrypt' => 'Strong encryption will not be used.', 'ldap' => 'LDAP authentication will be disabled.'); asort($aMandatoryExtensions); // Sort the list to look clean !