From ed1389dfa3e2d4e452ee99cee0669579aa063495 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 7 Jun 2010 06:51:46 +0000 Subject: - typo git-svn-id: https://svn.roundcube.net/trunk@3722 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/installer/check.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roundcubemail/installer/check.php b/roundcubemail/installer/check.php index 173924673..d1775a3ff 100644 --- a/roundcubemail/installer/check.php +++ b/roundcubemail/installer/check.php @@ -82,7 +82,7 @@ if (version_compare(PHP_VERSION, MIN_PHP_VERSION, '>=')) { $ext_dir = ini_get('extension_dir'); $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; -foreach ($required_php_exts AS $name => $ext) { +foreach ($required_php_exts as $name => $ext) { if (extension_loaded($ext)) { $RCI->pass($name); } else { @@ -98,7 +98,7 @@ foreach ($required_php_exts AS $name => $ext) {

The next couple of extensions are optional and recommended to get the best performance:

$ext) { +foreach ($optional_php_exts as $name => $ext) { if (extension_loaded($ext)) { $RCI->pass($name); } @@ -119,7 +119,7 @@ foreach ($optional_php_exts AS $name => $ext) { $ext) { +foreach ($supported_dbs as $database => $ext) { if (extension_loaded($ext)) { $RCI->pass($database); } -- cgit v1.2.3