diff --git a/ChangeLog b/ChangeLog index 26ccf56064..c7e5a6b784 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,6 +34,7 @@ phpMyAdmin - ChangeLog - issue #11758 Missing quoting of table in ALTER CONVERT query - issue #11752 PMA 4.5.2 breaks MySQL Master-Master Cluster - issue #11757 Export and preview show different SQL for character set +- issue #11749 Fix possible undefined variables in table operations 4.5.2.0 (2015-11-23) - issue #11589 Incorrect parameter in mysqli_fetch_fields() diff --git a/libraries/tbl_info.inc.php b/libraries/tbl_info.inc.php index 1f70188e7b..e6d3a55a74 100644 --- a/libraries/tbl_info.inc.php +++ b/libraries/tbl_info.inc.php @@ -106,4 +106,6 @@ if ($showtable) { ? 'DEFAULT' : $pack_keys; unset($create_options, $each_create_option); -} // end if +} else { + $pack_keys = $row_format = null; +}// end if