There is no longer message for MySQL < 5.

This commit is contained in:
Michal Čihař
2010-04-19 14:25:17 +02:00
parent 066ff75a74
commit e4e121234b
2 changed files with 2 additions and 3 deletions

View File

@@ -692,8 +692,7 @@ $strPrivDescDelete = __('Allows deleting data.');
$strPrivDescDropDb = __('Allows dropping databases and tables.');
$strPrivDescDropTbl = __('Allows dropping tables.');
$strPrivDescEvent = __('Allows to set up events for the event scheduler');
$strPrivDescExecute5 = __('Allows executing stored routines.');
$strPrivDescExecute = __('Allows running stored procedures; has no effect in this MySQL version.');
$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.');
$strPrivDescIndex = __('Allows creating and dropping indexes.');

View File

@@ -168,7 +168,7 @@ function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
array('Create_routine_priv', 'CREATE ROUTINE', $GLOBALS['strPrivDescCreateRoutine']),
array('Alter_routine_priv', 'ALTER ROUTINE', $GLOBALS['strPrivDescAlterRoutine']),
array('Create_user_priv', 'CREATE USER', $GLOBALS['strPrivDescCreateUser']),
array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute5']),
array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute']),
);
if (!empty($row) && isset($row['Table_priv'])) {