The branch, master has been updated via 889ea0afb047b255e81ebb1fe54f5bb825a804ef (commit) from 270960ee35349a40315b4abe5512ebaea1967580 (commit)
- Log ----------------------------------------------------------------- commit 889ea0afb047b255e81ebb1fe54f5bb825a804ef Author: Michal Čihař michal@cihar.com Date: Fri Aug 19 12:05:15 2011 +0200
Fix getting tables
-----------------------------------------------------------------------
Summary of changes: db_datadict.php | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/db_datadict.php b/db_datadict.php index e9a8c55..e74524d 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -58,8 +58,7 @@ PMA_DBI_select_db($db); $tables = PMA_DBI_get_tables($db);
$count = 0; -foreach($tables as $row) { - $table = $row[0]; +foreach($tables as $table) { $comments = PMA_getComments($db, $table);
echo '<div>' . "\n";
hooks/post-receive