From: Marcel Werk Date: Wed, 31 Aug 2016 10:20:19 +0000 (+0200) Subject: Fixed missing margin in list of tagged articles X-Git-Tag: 3.0.0_Beta_1~378 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=5639633c52e97f1ee07761711dee0bfe13c33360;p=GitHub%2FWoltLab%2FWCF.git Fixed missing margin in list of tagged articles --- 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'; } }