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.
This commit is contained in:
myk%mozilla.org 2001-11-27 00:49:26 +00:00
Родитель 9b7cf1aa0d
Коммит 1e969d3f91
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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 = \'\';
');