]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 322412 Typo in error message
authortimeless%mozdev.org <>
Thu, 5 Jan 2006 08:16:19 +0000 (08:16 +0000)
committertimeless%mozdev.org <>
Thu, 5 Jan 2006 08:16:19 +0000 (08:16 +0000)
r=lpsolit a=justdave

Bugzilla/DB.pm

index 47c44157572e6cc17736409b7b0feb7ddf67fcfd..ba2a9c631c7dc87b93510537b445ba966df745db 100644 (file)
@@ -764,7 +764,7 @@ sub db_new {
     my $self = DBI->connect($dsn, $user, $pass, $attributes)
         or die "\nCan't connect to the database.\nError: $DBI::errstr\n"
         . "  Is your database installed and up and running?\n  Do you have"
-        . "the correct username and password selected in localconfig?\n\n";
+        . " the correct username and password selected in localconfig?\n\n";
 
     # RaiseError was only set to 0 so that we could catch the 
     # above "die" condition.