use Ox.decodeURI/Ox.decodeURIComponent

This commit is contained in:
rolux 2013-08-14 18:54:06 +00:00
commit 1e10fb5967
4 changed files with 4 additions and 4 deletions

View file

@ -327,7 +327,7 @@ pandora.ui.infoView = function(data) {
.append(formatKey('wiki'))
.append(
'<a href="' + data.wiki + '">'
+ decodeURI(data.wiki.split('wiki/').pop()) + '</a>'
+ Ox.decodeURI(data.wiki.split('wiki/').pop()) + '</a>'
);
}
$links.appendTo($text);