Merge branch 'QA_5_0'

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2020-01-11 16:29:05 +01:00
commit 0ae945f1f5
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ phpMyAdmin - ChangeLog
- issue #15767 Fixed can not copy user account since 5.0 - "error #1133"
- issue #15772 Fixed error code 500 during pagination of the tables in a database
- issue Fix php error "Trying to access array offset on value of type null" on column distinct values feature
- issue #15741 Fix fatal javascript error on clicking "Pick from Central Columns"
5.0.1 (2020-01-07)
- issue #15719 Fixed error 500 when browsing a table when $cfg['LimitChars'] used a string and not an int value

View File

@ -3586,7 +3586,7 @@ AJAX.registerOnload('functions.js', function () {
url: href,
data: params,
success: function (data) {
centralColumnList[db + '_' + table] = JSON.parse(data.message);
centralColumnList[db + '_' + table] = data.message;
},
async:false
});

View File

@ -79,7 +79,7 @@ class CentralColumnsController extends AbstractController
return;
}
if (isset($_POST['getColumnList'])) {
$this->response->addJSON($this->getColumnList([
$this->response->addJSON('message', $this->getColumnList([
'cur_table' => $_POST['cur_table'] ?? null,
]));
return;