From 824cf1ff075eee72ceeb66e1852576fba61f369b Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 31 May 2013 22:14:58 +0000 Subject: [PATCH] no html entities in document title, fixes #1558 --- static/js/pandora/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/item.js b/static/js/pandora/item.js index 55f3fbea1..3a5292e0f 100644 --- a/static/js/pandora/item.js +++ b/static/js/pandora/item.js @@ -29,7 +29,7 @@ pandora.ui.item = function() { if (result.status.code == 200) { // we want to cache the title in any way, so that after closing // a dialog and getting to this item, the title is correct - var documentTitle = pandora.getDocumentTitle(result.data.title); + var documentTitle = pandora.getDocumentTitle(Ox.decodeHtml(result.data.title)); document.title = pandora.getPageTitle(document.location.pathname) || documentTitle; }