]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 109802: Make it clear how to enter mysql passwords with special character...
authormyk%mozilla.org <>
Tue, 27 Nov 2001 08:49:26 +0000 (08:49 +0000)
committermyk%mozilla.org <>
Tue, 27 Nov 2001 08:49:26 +0000 (08:49 +0000)
Patch by Dave Miller <justdave@syndicomm.com>.
r=ddkilzer,louie.

checksetup.pl

index 0a3edac79f4f120f547c798aff7333fe6a1f0fca..942c4e2ef3d51a40783bb096818efed5870ce881 100755 (executable)
@@ -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 = \'\';
 ');