Index: includes/install.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/install.inc,v retrieving revision 1.124 diff -u -p -r1.124 install.inc --- includes/install.inc 13 Jan 2010 05:08:29 -0000 1.124 +++ includes/install.inc 17 Jan 2010 10:32:23 -0000 @@ -379,7 +379,7 @@ abstract class DatabaseTasks { $this->pass('Drupal can CONNECT to the database ok.'); } catch (Exception $e) { - $this->fail(st('Failed to connect to your %name database server. %name reports the following message: %error.For more help, see the Installation and upgrading handbook. If you are unsure what these terms mean you should probably contact your hosting provider.', array('%error' => $e->getMessage(), '%name' => $this->name()))); + $this->fail(st('Failed to connect to your %name database server. %name reports the following message: %error.', array('%error' => $e->getMessage(), '%name' => $this->name()))); return FALSE; } return TRUE;