summaryrefslogtreecommitdiff
path: root/htroot/js
diff options
context:
space:
mode:
authororbiter <mc@yacy.net>2013-12-29 13:03:33 +0100
committerorbiter <mc@yacy.net>2013-12-29 13:03:33 +0100
commit4035e20f0b20d913b11f677f673ec27a1755e69c (patch)
treefc91ebc6565c573ebf0cf9756ef2ec84de8b209d /htroot/js
parent7e21d1ff700a655c5e324d4812f08fcb8c83da06 (diff)
unescaping the path
Diffstat (limited to 'htroot/js')
-rw-r--r--htroot/js/yacyinteractive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/htroot/js/yacyinteractive.js b/htroot/js/yacyinteractive.js
index def497d52..80d1f656c 100644
--- a/htroot/js/yacyinteractive.js
+++ b/htroot/js/yacyinteractive.js
@@ -225,7 +225,7 @@ function resultLine(type, item, linenumber) {
html += "<td align=\"left\">" + protocol + "</td>"; // Protocol
html += "<td align=\"left\"><a href=\"" + protocol + "://" + host + "/" + "\">" + host + "</a></td>"; // Host
html += "<td align=\"left\"><a href=\"" + protocol + "://" + host + path + "\">" + path + "</a></td>"; // Path
- html += "<td align=\"left\"><a href=\"" + item.link + "\">" + item.link + "</a></td>"; // URL
+ html += "<td align=\"left\"><a href=\"" + item.link + "\">" + unescape(item.link) + "</a></td>"; // URL
if (item.sizename == "-1 bytes") html += "<td></td>"; else html += "<td align=\"right\">" + item.sizename + "</td>"; // Size
html += "<td align=\"right\">" + pd + "</td>"; // Date
html += "</tr>";