The branch, QA_3_4 has been updated via 426a7e3733e12ef225a96e25d4d5554665d6cf52 (commit) from badc93d5d4eb2dcd02f6898e13977dafe11425db (commit)
- Log ----------------------------------------------------------------- commit 426a7e3733e12ef225a96e25d4d5554665d6cf52 Author: Madhura Jayaratne madhura.cj@gmail.com Date: Wed Jan 25 23:09:16 2012 +0530
Avoid warnings in tracking page
-----------------------------------------------------------------------
Summary of changes: db_tracking.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/db_tracking.php b/db_tracking.php index c0421d6..fabd825 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -161,7 +161,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']; }
hooks/post-receive