diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-06-07 06:51:46 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-06-07 06:51:46 +0000 |
| commit | ed1389dfa3e2d4e452ee99cee0669579aa063495 (patch) | |
| tree | 8119a84df2c25c0f465fb6cd80e843e03e7239a1 /roundcubemail/installer/check.php | |
| parent | 8f2870ff8e893fa639d92a3af2d26a4ce812f68a (diff) | |
- typo
git-svn-id: https://svn.roundcube.net/trunk@3722 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/installer/check.php')
| -rw-r--r-- | roundcubemail/installer/check.php | 6 |
1 files 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) { <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); } |
