Use parent_id instead of edit_id.
authorMatthijs Kooijman <matthijs@stdin.nl>
Fri, 31 Oct 2008 16:46:00 +0000 (17:46 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Fri, 31 Oct 2008 16:46:00 +0000 (17:46 +0100)
Previously, edit_id was taken as the message to reply to, but it was
never set, nor appropriate.

influences/views.py

index 1025efa2e8ea6a5cbb5dff4d12bf610c00a94a1f..fe062d553edfd64f56ca59e8a71c2366fec60f7f 100644 (file)
@@ -118,13 +118,13 @@ def influence_detail(request, object_id):
     return render_to_response('influences/influence_detail.html', context, RequestContext(request))
 
 @login_required
-def influence_comment(request, object_id, edit_id=None):
+def influence_comment(request, object_id, parent_id=None):
     kwargs = {}
     # Add the content_type, since we don't put in in the url explicitly
     kwargs['content_type'] = ContentType.objects.get_for_model(Influence).id
     # Find the comment to which we're replying, so we can get the right form for it.
-    if edit_id:
-        reply_to = get_object_or_404(ThreadedComment, id=edit_id)
+    if parent_id:
+        reply_to = get_object_or_404(ThreadedComment, id=parent_id)
     else:
         reply_to = None
 
@@ -138,6 +138,6 @@ def influence_comment(request, object_id, edit_id=None):
     kwargs['preview'] = influence_comment_preview
     if parent_id:
         kwargs['prefix'] = "reply-to-%s" % (parent_id)
-    return free_comment(request, object_id=object_id, edit_id=edit_id, **kwargs)
+    return free_comment(request, object_id=object_id, parent_id=parent_id, **kwargs)
 
 # vim: set sts=4 sw=4 expandtab: