From 2847a4547e98a574e3bc08c9fba9a0273fec9efe Mon Sep 17 00:00:00 2001
From: Skia
Date: Sun, 3 Sep 2017 12:23:26 +0200
Subject: [PATCH] forum: display only viewable topics in "last unread"
Signed-off-by: Skia
---
forum/templates/forum/last_unread.jinja | 2 ++
1 file changed, 2 insertions(+)
diff --git a/forum/templates/forum/last_unread.jinja b/forum/templates/forum/last_unread.jinja
index 83bcffb0..9be995b8 100644
--- a/forum/templates/forum/last_unread.jinja
+++ b/forum/templates/forum/last_unread.jinja
@@ -17,7 +17,9 @@
{% trans %}Refresh{% endtrans %}
{% for t in page_obj.object_list %}
+ {% if user.can_view(t) %}
{{ display_topic(t, user, True) }}
+ {% endif %}
{% endfor %}