Unescape HTML entities (safely) - fixes #785

This commit is contained in:
Tom Morris 2013-09-04 18:40:16 -04:00
parent 889245fdf4
commit ec12e5f004
4 changed files with 9 additions and 1 deletions

View File

@ -389,6 +389,7 @@ function init() {
"externals/imgareaselect/jquery.imgareaselect.js",
"externals/date.js",
"externals/jquery.i18n.js",
"externals/underscore-min.js",
"externals/CFInstall.min.js",
"scripts/chrome-frame.js",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -145,7 +145,7 @@ DataTableCellUI.prototype._render = function() {
var a = $('<a></a>')
.addClass("data-table-recon-topic")
.attr("target", "_blank")
.text(candidate.name)
.text(_.unescape(candidate.name))
.appendTo(li);
if ((service) && (service.view) && (service.view.url)) {