From 073543aec910eddf897341a118084253dae03987 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 7 Jun 2010 06:51:46 +0000 Subject: - typo --- installer/check.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'installer/check.php') diff --git a/installer/check.php b/installer/check.php index 173924673..d1775a3ff 100644 --- a/installer/check.php +++ b/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