From 2a6d45d8474fc3ecc6878d55749a42e5b652a29c Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 1 Oct 2002 20:47:01 +0000 Subject: [PATCH] typo --- ChangeLog | 4 ++++ Documentation.html | 11 ++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 36c985bf9..aaec15277 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 d05c0d6cc..d7f0a4995 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.