Skip to content

Commit

Permalink
Fix displaying info about non-alphabetical objects (bug #599)
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Feb 22, 2018
1 parent 3410836 commit 14db884
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/static/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
Expand Down
1 change: 1 addition & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -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):
Expand Down

0 comments on commit 14db884

Please sign in to comment.