diff --git a/Documentation.html b/Documentation.html
index 51df663ba..a87b19e46 100755
--- a/Documentation.html
+++ b/Documentation.html
@@ -570,11 +570,12 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
create a new database for phpmyadmin:
CREATE DATABASE phpmyadmin;
Note that "controluser" must have
- SELECT, INSERT and DELETE privileges on the
- bookmark table. Here is a query to set up those privileges
- (using "pma" as the controluser):
+ SELECT, INSERT and DELETE privileges on this
+ database. Here is a query to set up those privileges
+ (using "phpmyadmin" as the database name, and
+ "pma" as the controluser):
- GRANT SELECT,INSERT,DELETE ON <pmadb> to 'pma'@localhost;
+ GRANT SELECT,INSERT,DELETE ON phpmyadmin.* to 'pma'@localhost;
do not give any other user rights on this database.