Index: install.php =================================================================== RCS file: /cvs/drupal/drupal/install.php,v retrieving revision 1.30 diff -u -p -r1.30 install.php --- install.php 17 Dec 2006 06:51:47 -0000 1.30 +++ install.php 30 Dec 2006 06:09:12 -0000 @@ -336,7 +336,7 @@ function _install_settings_form_validate $function = 'drupal_test_'. $db_type; if (!$function($db_url, $success)) { - if (isset($success['CONNECT'])) { + if (in_array('CONNECT', $success)) { form_set_error('db_type', st('In order for Drupal to work and to proceed with the installation process you must resolve all permission issues reported above. We were able to verify that we have permission for the following commands: %commands. For more help with configuring your database server, see the Installation and upgrading handbook. If you are unsure what any of this means you should probably contact your hosting provider.', array('%commands' => implode($success, ', ')))); } else {