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:
authorMichal Čihař <michal@cihar.com>2011-08-19 14:05:15 +0400
committerMichal Čihař <michal@cihar.com>2011-08-19 14:05:15 +0400
commit889ea0afb047b255e81ebb1fe54f5bb825a804ef (patch)
treecb8019a607ef49657cfa9764c12541da1d144aa0 /db_datadict.php
parent270960ee35349a40315b4abe5512ebaea1967580 (diff)
Fix getting tables
Diffstat (limited to 'db_datadict.php')
-rw-r--r--db_datadict.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/db_datadict.php b/db_datadict.php
index e9a8c551f0..e74524d09d 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";