diff --git a/adminer/static/functions.js b/adminer/static/functions.js index 71065313..392e84ea 100644 --- a/adminer/static/functions.js +++ b/adminer/static/functions.js @@ -239,7 +239,7 @@ function checkboxClick(event, el) { function setHtml(id, html) { var el = document.getElementById(id); if (el) { - if (html == undefined) { + if (html == null) { el.parentNode.innerHTML = ' '; } else { el.innerHTML = html;