# HG changeset patch # User Brian Neal # Date 1294630401 0 # Node ID 4f032a6e21f8fb56323da0f3b219e04f7c50e04a # Parent 69498a43e6361e457494c72d9bd9d47569607f07 Fix #139; when editing a user's post, the post author's signature should appear with the post, not the user (moderator) making the edit). diff -r 69498a43e636 -r 4f032a6e21f8 gpp/forums/views/main.py --- a/gpp/forums/views/main.py Sun Jan 09 21:16:08 2011 +0000 +++ b/gpp/forums/views/main.py Mon Jan 10 03:33:21 2011 +0000 @@ -389,7 +389,7 @@ else: form = PostForm(instance=post, topic_name=topic_name) - post.user_profile = request.user.get_profile() + post.user_profile = post.user.get_profile() return render_to_response('forums/edit_post.html', { 'forum': post.topic.forum,