Actually fix quote resurrection of existing posts.

This commit is contained in:
Nicolas Stepien 2012-05-25 20:15:21 +02:00
parent c715b933d8
commit 0ad0510bd3
2 changed files with 2 additions and 2 deletions

View File

@ -3345,7 +3345,7 @@
nodes.push(a = $.el('a', {
textContent: "" + quote + "\u00A0(Dead)"
}));
if (board === g.BOARD && $.id("#p" + id)) {
if (board === g.BOARD && $.id("p" + id)) {
a.href = "#p" + id;
a.className = 'quotelink';
a.setAttribute('onclick', "replyhl('" + id + "');");

View File

@ -2548,7 +2548,7 @@ Quotify =
# \u00A0 is nbsp
textContent: "#{quote}\u00A0(Dead)"
if board is g.BOARD and $.id "#p#{id}"
if board is g.BOARD and $.id "p#{id}"
a.href = "#p#{id}"
a.className = 'quotelink'
a.setAttribute 'onclick', "replyhl('#{id}');"