From 374f9cf69922f38c340bd14a6e90d2beb6ac17f6 Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 2 Jan 2019 23:16:50 +0100 Subject: [PATCH] Fixed New Topic button not showing up anymore (assumed wrong column type). --- templates/forum/macros.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/forum/macros.twig b/templates/forum/macros.twig index a6627faf..5ea76fb1 100644 --- a/templates/forum/macros.twig +++ b/templates/forum/macros.twig @@ -56,7 +56,7 @@ {% macro forum_category_tools(info, perms, take, offset) %} {% from 'macros.twig' import pagination %} - {% set is_locked = info.forum_archived is not null %} + {% set is_locked = info.forum_archived != 0 %} {% set can_topic = not is_locked and perms|perms_check(constant('MSZ_FORUM_PERM_CREATE_TOPIC')) %} {% set pag = pagination( info.forum_topic_count,