summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormyk%mozilla.org <>2001-11-27 09:49:26 +0100
committermyk%mozilla.org <>2001-11-27 09:49:26 +0100
commit18b6bbbf06b7ce935edb5d0f4ce8237408fe399b (patch)
treeb71f98bc3fa3daff0190a73dfd35d10004aa96dd /checksetup.pl
parentc5f776d905223f82fc06476fbedfd6e3c379e7ed (diff)
downloadbugzilla-18b6bbbf06b7ce935edb5d0f4ce8237408fe399b.tar.gz
bugzilla-18b6bbbf06b7ce935edb5d0f4ce8237408fe399b.tar.xz
Fix for bug 109802: Make it clear how to enter mysql passwords with special characters into localconfig.
Patch by Dave Miller <justdave@syndicomm.com>. r=ddkilzer,louie.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 0a3edac79..942c4e2ef 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 = \'\';
');