From 6b86f67d044e8e08ed66d3f09695b4ebfff7d284 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Wed, 1 Jun 2016 12:59:18 +0200 Subject: [PATCH] Removed '.htac' template list --- wcfsetup/install/files/lib/acp/page/TemplateListPage.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wcfsetup/install/files/lib/acp/page/TemplateListPage.class.php b/wcfsetup/install/files/lib/acp/page/TemplateListPage.class.php index a5e552dd90..91ec16e714 100644 --- a/wcfsetup/install/files/lib/acp/page/TemplateListPage.class.php +++ b/wcfsetup/install/files/lib/acp/page/TemplateListPage.class.php @@ -100,6 +100,8 @@ class TemplateListPage extends SortablePage { if ($this->searchTemplateName) $this->objectList->getConditionBuilder()->add('templateName LIKE ?', array('%'.$this->searchTemplateName.'%')); if ($this->application) $this->objectList->getConditionBuilder()->add('application = ?', array($this->application)); + + $this->objectList->getConditionBuilder()->add('templateName <> ?', array('.htac')); } /** -- 2.20.1