From: myk%mozilla.org <> Date: Tue, 27 Nov 2001 08:49:26 +0000 (+0000) Subject: Fix for bug 109802: Make it clear how to enter mysql passwords with special character... X-Git-Tag: bugzilla-2.16rc1~295 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18b6bbbf06b7ce935edb5d0f4ce8237408fe399b;p=thirdparty%2Fbugzilla.git Fix for bug 109802: Make it clear how to enter mysql passwords with special characters into localconfig. Patch by Dave Miller . r=ddkilzer,louie. --- diff --git a/checksetup.pl b/checksetup.pl index 0a3edac79f..942c4e2ef3 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -343,8 +343,10 @@ $db_user = "bugs"; # user to attach to the MySQL database LocalVar('db_pass', ' # # Some people actually use passwords with their MySQL database ... +# If you use apostrophe (\') or a backslash (\\) in your password, you\'ll +# need to escape it by preceding it with a \\ character. (\\\') or (\\\\) # -$db_pass = ""; +$db_pass = \'\'; ');