Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Rochnyack <pavel2000@ngs.ru>2016-08-03 13:11:02 +0300
committerPavel Rochnyack <pavel2000@ngs.ru>2016-08-14 22:13:27 +0300
commitd1e353f23539e12545ee77314df7ccdf4a7ec2e5 (patch)
tree041b7ad51ca576fb61584058cb0aa2963ecbf825 /server_privileges.php
parentd09e5438c14631a9fedfd9ad74531f9c181b1c30 (diff)
Fix #12419 wrong description on GRANT option of table/routine privileges.
Signed-off-by: Pavel Rochnyack <pavel2000@ngs.ru>
Diffstat (limited to 'server_privileges.php')
-rw-r--r--server_privileges.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/server_privileges.php b/server_privileges.php
index 34dd8933b8..c7b1c4f71e 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -68,8 +68,9 @@ $strPrivDescDropTbl = __('Allows dropping tables.');
$strPrivDescEvent = __('Allows to set up events for the event scheduler.');
$strPrivDescExecute = __('Allows executing stored routines.');
$strPrivDescFile = __('Allows importing data from and exporting data into files.');
-$strPrivDescGrant = __(
- 'Allows adding users and privileges without reloading the privilege tables.'
+$strPrivDescGrantTbl = __(
+ 'Allows user to give to other users or remove from other users the privileges '
+ . 'that user possess yourself.'
);
$strPrivDescIndex = __('Allows creating and dropping indexes.');
$strPrivDescInsert = __('Allows inserting and replacing data.');