diff -r 04fa36f93e3a -r af604e6e1a71 install/index.php --- a/install/index.php Fri May 09 15:41:02 2008 +0000 +++ b/install/index.php Mon May 12 07:36:11 2008 +0000 @@ -202,8 +202,10 @@ echo "
GRANT SELECT, INSERT, UPDATE, DELETE
ON " . $db_name . ".*
TO '" . $db_user . "'@'" . $db_host . "'
IDENTIFIED BY '" . $db_pass . "';
$ createuser " . $db_user . "
" .
- "Shall the new role be a superuser? (y/n) n
" .
+ echo "
$ createuser -E -P " . $db_user . "
" .
+ "Enter password for new role: " . $db_pass . "
" .
+ "Enter it again: " . $db_pass . "
" .
+ "Shall the new role be a superuser? (y/n) n
" . A
"Shall the new user be allowed to create databases? (y/n) n
" .
"Shall the new user be allowed to create more new users? (y/n) n
" .
"CREATE USER
" .