From 5fcc12136e2b43bc60f8d2a74bf54b1ca09651b8 Mon Sep 17 00:00:00 2001 From: Rocky Duan Date: Mon, 30 Jul 2012 17:20:30 -0400 Subject: [PATCH] fixed bug caused by rearranging stuff --- lms/templates/discussion/thread.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/templates/discussion/thread.html b/lms/templates/discussion/thread.html index 1f44af9d18..d82005ae51 100644 --- a/lms/templates/discussion/thread.html +++ b/lms/templates/discussion/thread.html @@ -47,10 +47,10 @@ if kwargs.get('show_comments', False): url_for_thread = "" else: - url_for_thread = reverse('django_comment_client.forum.views.single_thread', args=[course_id, thread['id']]) + url_for_thread = reverse('django_comment_client.forum.views.single_thread', args=[course_id, content['id']]) %> % if type == "thread": - ${content['title'] | h} + ${content['title'] | h} % endif