##// 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 447 """Get the html of a post. Used for popups."""
448 448
449 449 post = get_object_or_404(Post, id=post_id)
450 thread = post.thread
451 if not thread:
452 thread = post
450 thread = post.thread_new
453 451
454 452 context = RequestContext(request)
455 453 context["post"] = post
General Comments 0
You need to be logged in to leave comments. Login now