##// END OF EJS Templates
Fixed links to not existing messages
neko259 -
r388:2d312aa9 default
parent child Browse files
Show More
@@ -549,7 +549,7 b' def _remove_invalid_links(text):'
549 549 post_id = reply_number.group(1)
550 550 post = Post.objects.filter(id=post_id)
551 551 if not post.exists():
552 text = string.replace(text, '>>' + id, id)
552 text = string.replace(text, '>>' + post_id, post_id)
553 553
554 554 return text
555 555
General Comments 0
You need to be logged in to leave comments. Login now