Merge branch 'QA_4_6'

This commit is contained in:
Michal Čihař 2016-11-15 15:22:49 +01:00
commit 4222000549
2 changed files with 2 additions and 1 deletions

View File

@ -122,6 +122,7 @@ phpMyAdmin - ChangeLog
- issue #12453 Fixed escaping of SQL parts in some corner cases
- issue #12542 Missing table name in account privileges editor
- issue #12691 Remove ksort call on empty array in PMA_getPlugins function
- issue #12443 Check parameter type before processing
4.6.4 (2016-08-16)
- issue [security] Weaknesses with cookie encryption, see PMASA-2016-29

View File

@ -110,7 +110,7 @@ foreach ($tables as $each_table) {
} else {
$structure_checked = $is_checked;
}
if (isset($_GET['table_data'])) {
if (isset($_GET['table_data']) && is_array($_GET['table_data'])) {
$data_checked = PMA_getCheckedClause(
$each_table['Name'], $_GET['table_data']
);