From: timeless%mozdev.org <> Date: Thu, 5 Jan 2006 08:16:19 +0000 (+0000) Subject: Bug 322412 Typo in error message X-Git-Tag: bugzilla-2.20.1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ff5ae153c3796cd1ac5a4acf9e762f94c3512c3;p=thirdparty%2Fbugzilla.git Bug 322412 Typo in error message r=lpsolit a=justdave --- diff --git a/Bugzilla/DB.pm b/Bugzilla/DB.pm index 47c4415757..ba2a9c631c 100644 --- a/Bugzilla/DB.pm +++ b/Bugzilla/DB.pm @@ -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.