Close #775
This commit is contained in:
parent
ed3dbfd988
commit
6ce4c2abbd
@ -3886,7 +3886,7 @@
|
|||||||
_ref = post.quotes;
|
_ref = post.quotes;
|
||||||
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||||||
quote = _ref[_i];
|
quote = _ref[_i];
|
||||||
if (quote.parentNode.getAttribute('style') === 'font-size: smaller;') {
|
if (quote.parentNode.parentNode.className === 'capcodeReplies') {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (qid = quote.hash.slice(2)) {
|
if (qid = quote.hash.slice(2)) {
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
master
|
master
|
||||||
|
- Mayhem
|
||||||
|
Fix 'Administrator/Moderator/Developer Replies' creating extra backlinks on /q/, again.
|
||||||
|
|
||||||
2.35.3
|
2.35.3
|
||||||
- Mayhem
|
- Mayhem
|
||||||
|
|||||||
@ -3190,7 +3190,7 @@ QuoteBacklink =
|
|||||||
quotes = {}
|
quotes = {}
|
||||||
for quote in post.quotes
|
for quote in post.quotes
|
||||||
# Stop at 'Admin/Mod/Dev Replies:' on /q/
|
# Stop at 'Admin/Mod/Dev Replies:' on /q/
|
||||||
break if quote.parentNode.getAttribute('style') is 'font-size: smaller;'
|
break if quote.parentNode.parentNode.className is 'capcodeReplies'
|
||||||
# Don't process >>>/b/.
|
# Don't process >>>/b/.
|
||||||
if qid = quote.hash[2..]
|
if qid = quote.hash[2..]
|
||||||
# Duplicate quotes get overwritten.
|
# Duplicate quotes get overwritten.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user