Mercurial > public > sg101
changeset 230:5ee9422ce83c
Fix lack of trailing slash on the individual forum RSS feed links. For some reason this was causing a bizarre middleware error 'request object has not attribute session'.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 13 Jul 2010 03:51:37 +0000 |
parents | 08b30ac04580 |
children | a2d388ed106e |
files | gpp/templates/forums/index.html |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gpp/templates/forums/index.html Tue Jul 13 01:25:48 2010 +0000 +++ b/gpp/templates/forums/index.html Tue Jul 13 03:51:37 2010 +0000 @@ -40,7 +40,7 @@ {% endif %} <h4><a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a> {% if forum.has_feed %} - <a href="/feeds/forums/{{ forum.slug }}"> + <a href="/feeds/forums/{{ forum.slug }}/"> <img src="{{ MEDIA_URL }}icons/feed.png" alt="RSS Feed" title="Feed for this forum" /></a> {% endif %}</h4> <p>{{ forum.description }}</p></td>