summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-05-29 17:10:28 +0200
committerjustdave%syndicomm.com <>2001-05-29 17:10:28 +0200
commit731066ae7556318e2541a325a6d8b245b3935135 (patch)
treef18d8c1d1060bcc96906ccb53cf3d66c8d63089d /checksetup.pl
parentdb9cf7c5e1885387293000997eaf966fb89ac505 (diff)
downloadbugzilla-731066ae7556318e2541a325a6d8b245b3935135.tar.gz
bugzilla-731066ae7556318e2541a325a6d8b245b3935135.tar.xz
Fix for bug 78045: change references to README in error messages to point to the Bugzilla Guide instead.
Patch by Matthew Tuck <matty@chariot.net.au> r= justdave@syndicomm.com
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/checksetup.pl b/checksetup.pl
index ae3f06152..3a3a500b9 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -601,7 +601,8 @@ The '$my_db_name' database is not accessible. This might have several reasons:
* MySQL is not running.
* MySQL is running, but the rights are not set correct. Go and read the
- README file of Bugzilla and all parts of the MySQL documentation.
+ Bugzilla Guide in the doc directory and all parts of the MySQL
+ documentation.
* There is an subtle problem with Perl, DBI, DBD::mysql and MySQL. Make
sure all settings in 'localconfig' are correct. If all else fails, set
'\$db_check' to zero.\n
@@ -614,7 +615,7 @@ EOF
my $connectstring = "dbi:$db_base:$my_db_name:host=$my_db_host:port=$my_db_port";
my $dbh = DBI->connect($connectstring, $my_db_user, $my_db_pass)
or die "Can't connect to the table '$connectstring'.\n",
- "Have you read Bugzilla's README? Have you read the doc of '$db_base'?\n";
+ "Have you read the Bugzilla Guide in the doc directory? Have you read the doc of '$db_base'?\n";
END { $dbh->disconnect if $dbh }
@@ -1491,7 +1492,7 @@ AddField('attachments', 'submitter_id', 'mediumint not null');
# populate
# }
#
-# For now I was too lazy, so you should read the README :-)
+# For now I was too lazy, so you should read the documentation :-)