Skip to content

Commit

Permalink
Fix possible undefined variables in table operations
Browse files Browse the repository at this point in the history
Fixes #11749

Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Dec 23, 2015
1 parent 3d29a79 commit 16d9e80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,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()
Expand Down
4 changes: 3 additions & 1 deletion libraries/tbl_info.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,6 @@
? 'DEFAULT'
: $pack_keys;
unset($create_options, $each_create_option);
} // end if
} else {
$pack_keys = $row_format = null;
}// end if

0 comments on commit 16d9e80

Please sign in to comment.