Merge remote-tracking branch 'origin/QA_4_4' into QA_4_4
This commit is contained in:
commit
bbdd1b3a11
@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog
|
||||
- issue #1808 "Improve table structure" generates invalid SQL
|
||||
- bug Once checked "Show only active" checkbox is always checked
|
||||
- issue #1813 Delete rows using "Check All" is broken
|
||||
- Fix PHP 7 possible binding ambiguity
|
||||
|
||||
4.4.12.0 (2015-07-20)
|
||||
- bug Saved chart image does not have a proper name or an extension
|
||||
|
||||
@ -96,7 +96,8 @@ if ($showtable) {
|
||||
foreach ($create_options as $each_create_option) {
|
||||
$each_create_option = explode('=', $each_create_option);
|
||||
if (isset($each_create_option[1])) {
|
||||
$$each_create_option[0] = $each_create_option[1];
|
||||
// ensure there is no ambiguity for PHP 5 and 7
|
||||
${$each_create_option[0]} = $each_create_option[1];
|
||||
}
|
||||
}
|
||||
// we need explicit DEFAULT value here (different from '0')
|
||||
|
||||
Loading…
Reference in New Issue
Block a user