fixed title escaping

This commit is contained in:
quenousimporte 2023-11-14 16:53:24 +01:00
parent a68cb9e832
commit 634c375145
1 changed files with 2 additions and 2 deletions

View File

@ -817,7 +817,7 @@ function showlinkdialog(link)
{ {
if (titlemap[link]) if (titlemap[link])
{ {
a.innerText = titlemap[link]; a.innerHTML = titlemap[link];
} }
else else
{ {
@ -827,7 +827,7 @@ function showlinkdialog(link)
{ {
if (res.title) if (res.title)
{ {
a.innerText = res.title; a.innerHTML = res.title;
titlemap[link] = res.title; titlemap[link] = res.title;
} }
}); });