From e0ef0e018d87c0fa793ae4cc18789652ac526d32 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 25 Aug 2018 19:10:11 +0100 Subject: [PATCH] Fix permissions check in 'more content' list --- app/templates/macros/topics.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/macros/topics.html b/app/templates/macros/topics.html index 0e01185..31896a4 100644 --- a/app/templates/macros/topics.html +++ b/app/templates/macros/topics.html @@ -43,8 +43,8 @@ {% if show_author %} by {{ topic.author.display_name }} {% endif %} - {% if not topic.author.checkPerm(current_user, "CHANGE_AUTHOR") %} - Create + {% if topic.author.checkPerm(current_user, "CHANGE_AUTHOR") %} + | Create {% endif %} {% endfor %}