changeset 253:5cf64ca9d9f5

#102; fix bug where the new posts on the home page were showing topic author instead of last post author.
author Brian Neal <bgneal@gmail.com>
date Mon, 20 Sep 2010 03:27:37 +0000
parents e3958aacd8dd
children e43b1be24ccc
files gpp/templates/forums/new_posts_tag.html
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gpp/templates/forums/new_posts_tag.html	Mon Sep 20 00:40:01 2010 +0000
+++ b/gpp/templates/forums/new_posts_tag.html	Mon Sep 20 03:27:37 2010 +0000
@@ -5,7 +5,7 @@
 {% if topics %}
    <ul>
    {% for topic in topics %}
-   <li><a href="{{ topic.last_post.get_absolute_url }}">{{ topic.name }}</a> by {{ topic.user.username }} on {% forum_date topic.update_date user 0 %}</li>
+   <li><a href="{{ topic.last_post.get_absolute_url }}">{{ topic.name }}</a> by {{ topic.last_post.user.username }} on {% forum_date topic.update_date user 0 %}</li>
    {% endfor %}
    </ul>
 {% else %}