From 073543aec910eddf897341a118084253dae03987 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 07 Jun 2010 02:51:46 -0400 Subject: [PATCH] - typo --- installer/check.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/check.php b/installer/check.php index 1739246..d1775a3 100644 --- a/installer/check.php +++ b/installer/check.php @@ -82,7 +82,7 @@ $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 @@ <p class="hint">The next couple of extensions are <em>optional</em> and recommended to get the best performance:</p> <?php -foreach ($optional_php_exts AS $name => $ext) { +foreach ($optional_php_exts as $name => $ext) { if (extension_loaded($ext)) { $RCI->pass($name); } @@ -119,7 +119,7 @@ <?php $prefix = (PHP_SHLIB_SUFFIX === 'dll') ? 'php_' : ''; -foreach ($supported_dbs AS $database => $ext) { +foreach ($supported_dbs as $database => $ext) { if (extension_loaded($ext)) { $RCI->pass($database); } -- Gitblit v1.9.1