Merge remote-tracking branch 'origin/QA_4_4' into QA_4_4

This commit is contained in:
Weblate 2015-07-26 14:42:06 +02:00
commit bbdd1b3a11
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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')