From 5639633c52e97f1ee07761711dee0bfe13c33360 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 31 Aug 2016 12:20:19 +0200 Subject: [PATCH] Fixed missing margin in list of tagged articles --- com.woltlab.wcf/templates/taggedArticleList.tpl | 3 +++ .../install/files/lib/system/tagging/TaggableArticle.class.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 com.woltlab.wcf/templates/taggedArticleList.tpl diff --git a/com.woltlab.wcf/templates/taggedArticleList.tpl b/com.woltlab.wcf/templates/taggedArticleList.tpl new file mode 100644 index 0000000000..619a092443 --- /dev/null +++ b/com.woltlab.wcf/templates/taggedArticleList.tpl @@ -0,0 +1,3 @@ +
+ {include file='articleListItems'} +
diff --git a/wcfsetup/install/files/lib/system/tagging/TaggableArticle.class.php b/wcfsetup/install/files/lib/system/tagging/TaggableArticle.class.php index 30f4652105..11c5fc8240 100644 --- a/wcfsetup/install/files/lib/system/tagging/TaggableArticle.class.php +++ b/wcfsetup/install/files/lib/system/tagging/TaggableArticle.class.php @@ -24,6 +24,6 @@ class TaggableArticle extends AbstractTaggable { * @inheritDoc */ public function getTemplateName() { - return 'articleListItems'; + return 'taggedArticleList'; } } -- 2.20.1