Fix displaying info about non-alphabetical objects (bug #599)

This commit is contained in:
Jakub Vrana 2018-02-22 16:47:30 +01:00
parent 3410836c12
commit 14db884471
2 changed files with 2 additions and 1 deletions

View file

@ -317,7 +317,7 @@ function checkboxClick(event) {
* @param string undefined to set parentNode to empty string
*/
function setHtml(id, html) {
var el = qs('#' + id);
var el = qs('[id="' + id.replace(/[\\"]/g, '\\$&') + '"]'); // database name is used as ID
if (el) {
if (html == null) {
el.parentNode.innerHTML = '';

View file

@ -1,5 +1,6 @@
Adminer 4.6.3-dev:
Stop session before connecting
Fix displaying info about non-alphabetical objects (bug #599)
PDO: Support binary fields download
Adminer 4.6.2 (released 2018-02-20):