##// END OF EJS Templates
Fixed thread diff
neko259 -
r403:f86393d8 default
parent child Browse files
Show More
@@ -447,9 +447,7 b' def get_post(request, post_id):'
447 """Get the html of a post. Used for popups."""
447 """Get the html of a post. Used for popups."""
448
448
449 post = get_object_or_404(Post, id=post_id)
449 post = get_object_or_404(Post, id=post_id)
450 thread = post.thread
450 thread = post.thread_new
451 if not thread:
452 thread = post
453
451
454 context = RequestContext(request)
452 context = RequestContext(request)
455 context["post"] = post
453 context["post"] = post
General Comments 0
You need to be logged in to leave comments. Login now