Upgrade script: fix message text: default MySQL user is owner of server, not current user

This commit is contained in:
David Anderson 2013-10-09 12:42:55 -07:00
parent 444815fa23
commit 3b395872be
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ function db_init_cli() {
$host = "localhost"; $host = "localhost";
} }
$in = fopen("php://stdin","r"); $in = fopen("php://stdin","r");
print "Database username (if not current user): "; print "Database username (default: owner of mysqld process): ";
$user = rtrim(fgets($in, 80)); $user = rtrim(fgets($in, 80));
print "Database password (if any): "; print "Database password (if any): ";
$pass = rtrim(fgets($in, 80)); $pass = rtrim(fgets($in, 80));