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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-01-25 21:42:22 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-01-25 21:42:22 +0400
commit112d692a3f7bfa69c9d2c7d8e68ec06f3aafa006 (patch)
treeb5d9c53ce3bfe98fc26a1eb7dedbabd083c7bf15 /db_tracking.php
parentf196b4804d8e96386a822e68927e2103956a868f (diff)
parent426a7e3733e12ef225a96e25d4d5554665d6cf52 (diff)
Merge branch 'QA_3_4'
Diffstat (limited to 'db_tracking.php')
-rw-r--r--db_tracking.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_tracking.php b/db_tracking.php
index a448647c2c..6fd9a9c527 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -163,7 +163,7 @@ foreach ($table_list as $key => $value) {
foreach ($value as $temp_table) {
// If $temp_table is a table with the value for 'Name' is set,
// rather than a propery of the table group.
- if (array_key_exists('Name', $temp_table)) {
+ if (is_array($temp_table) && array_key_exists('Name', $temp_table)) {
if (PMA_Tracker::getVersion($GLOBALS['db'], $temp_table['Name']) == -1) {
$my_tables[] = $temp_table['Name'];
}