diff options
author | alecpl <alec@alec.pl> | 2010-06-07 06:51:46 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-06-07 06:51:46 +0000 |
commit | 073543aec910eddf897341a118084253dae03987 (patch) | |
tree | 0b54b583fdfbebf50959cb90be1d0a0ef0936b36 /installer | |
parent | a0d29e518fa3acd3c4a846e125d5b4c5914baa9a (diff) |
- typo
Diffstat (limited to 'installer')
-rw-r--r-- | installer/check.php | 6 |
1 files changed, 3 insertions, 3 deletions
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) { <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 @@ foreach ($optional_php_exts AS $name => $ext) { <?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); } |