The branch, QA_3_3 has been updated via 5d525e89ebc32eb19fc6266b96988d8df0d22ff4 (commit) from 432379c87d6cb06a330c1928b3ec676da886a5f4 (commit)
- Log ----------------------------------------------------------------- commit 5d525e89ebc32eb19fc6266b96988d8df0d22ff4 Author: Marc Delisle marc@infomarc.info Date: Wed Jun 2 12:32:54 2010 -0400
bug [privileges] List of tables not shown when the db name has a wildcard
-----------------------------------------------------------------------
Summary of changes: ChangeLog | 1 + server_privileges.php | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index f4d9fb5..dca8ffe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #2986383 [parser] Not all data being shown / counted - bug [synchronize] Rows were deleted in target table regardless of the "Would you like to delete..." option +- bug [privileges] List of tables not shown when the db name has a wildcard
3.3.3.0 (2010-05-10) - patch #2982480 [navi] Do not group if there would be one table in group, diff --git a/server_privileges.php b/server_privileges.php index 0470ffe..fd2796f 100644 --- a/server_privileges.php +++ b/server_privileges.php @@ -1883,7 +1883,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs } else { echo ' <input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '"/>' . "\n" . ' <label for="text_tablename">' . $GLOBALS['strAddPrivilegesOnTbl'] . ':</label>' . "\n"; - if ($res = @PMA_DBI_try_query('SHOW TABLES FROM ' . PMA_backquote($dbname) . ';', null, PMA_DBI_QUERY_STORE)) { + if ($res = @PMA_DBI_try_query('SHOW TABLES FROM ' . PMA_backquote(PMA_unescape_mysql_wildcards($dbname)) . ';', null, PMA_DBI_QUERY_STORE)) { $pred_tbl_array = array(); while ($row = PMA_DBI_fetch_row($res)) { if (!isset($found_rows) || !in_array($row[0], $found_rows)) {
hooks/post-receive