diff --git a/ChangeLog b/ChangeLog index 08f1d7756..cd0f17775 100644 --- a/ChangeLog +++ b/ChangeLog @@ -46,6 +46,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA - bug #1813508 [login] Missing parameter: field after re-login - bug #1710144 [parser] Space after COUNT breaks Export but not Query - bug #1783620 [parser] Subquery results without "as" are ignored +- bug #1821264 [display] MaxTableList and INFORMATION_SCHEMA 2.11.3.0 (2007-12-08) - patch #1818389 to remove a notice (failed to flush buffer), thanks to diff --git a/libraries/database_interface.lib.php b/libraries/database_interface.lib.php index d362c4755..45fc6e90e 100644 --- a/libraries/database_interface.lib.php +++ b/libraries/database_interface.lib.php @@ -187,7 +187,7 @@ function PMA_DBI_get_tables($database, $link = null) /** * returns array of all tables in given db or dbs - * this function expects unqoted names: + * this function expects unquoted names: * RIGHT: my_database * WRONG: `my_database` * WRONG: my\_database @@ -212,12 +212,13 @@ function PMA_DBI_get_tables($database, $link = null) * @param string $table table * @param boolean|string $tbl_is_group $table is a table group * @param resource $link mysql link + * @param integer $limit_offset zero-based offset for the count + * @param boolean|integer $limit_count number of tables to return * @return array list of tables in given db(s) */ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = false, $link = null, $limit_offset = 0, $limit_count = false) { - // currently supported for MySQL >= 50002 if (true === $limit_count) { $limit_count = $GLOBALS['cfg']['MaxTableList']; }