diff --git a/ChangeLog b/ChangeLog index 36c985bf95..aaec15277b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-10-01 Marc Delisle + * Documentation.html, typo about GRANT: patch 616772, + thanks to Vince LaMonica (vjl323) + 2002-10-01 Alexander M. Turek * lang/german-*.inc.php3: Fixed some typos, thanks to Kai Michael Poppe (sdcepoppe). diff --git a/Documentation.html b/Documentation.html index d05c0d6ccc..d7f0a4995c 100755 --- a/Documentation.html +++ b/Documentation.html @@ -617,12 +617,13 @@ $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 this - database. Here is a query to set up those privileges - (using "phpmyadmin" as the database name, and - "pma" as the controluser):
+ SELECT, INSERT, UPDATE 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 phpmyadmin.* to 'pma'@localhost; +   GRANT SELECT,INSERT,UPDATE,DELETE ON phpmyadmin.* to 'pma'@'localhost';
do not give any other user rights on this database.