##// END OF EJS Templates
Fixed tag RSS
neko259 -
r1392:00e38830 default
parent child Browse files
Show More
@@ -33,7 +33,7 b' class TagThreadsFeed(Feed):'
33 description_template = 'boards/rss/post.html'
33 description_template = 'boards/rss/post.html'
34
34
35 def items(self, obj):
35 def items(self, obj):
36 return obj.threads.filter(archived=False).order_by('-id')
36 return obj.get_threads().filter(archived=False).order_by('-id')
37
37
38 def get_object(self, request, tag_name):
38 def get_object(self, request, tag_name):
39 return get_object_or_404(Tag, name=tag_name)
39 return get_object_or_404(Tag, name=tag_name)
General Comments 0
You need to be logged in to leave comments. Login now