mirror of
https://github.com/vrana/adminer.git
synced 2025-08-21 05:41:27 +02:00
Fix displaying info about non-alphabetical objects (bug #599)
This commit is contained in:
@@ -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 = '';
|
||||
|
Reference in New Issue
Block a user