From be2160fc5d77b0e80503ca03357b9807392735bd Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Tue, 12 Jun 2012 22:23:54 +0200 Subject: [PATCH] Fixes usage of __construct instead of __run --- .../files/lib/acp/page/AbstractCategoryListPage.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wcfsetup/install/files/lib/acp/page/AbstractCategoryListPage.class.php b/wcfsetup/install/files/lib/acp/page/AbstractCategoryListPage.class.php index c3357b647a..162f7b6fce 100644 --- a/wcfsetup/install/files/lib/acp/page/AbstractCategoryListPage.class.php +++ b/wcfsetup/install/files/lib/acp/page/AbstractCategoryListPage.class.php @@ -76,9 +76,9 @@ abstract class AbstractCategoryListPage extends AbstractPage { public $templateName = 'categoryList'; /** - * @see wcf\page\AbstractPage::assignVariables() + * @see wcf\page\AbstractPage::__run() */ - public function __construct() { + public function __run() { $classNameParts = explode('\\', get_called_class()); $className = array_pop($classNameParts); @@ -90,7 +90,7 @@ abstract class AbstractCategoryListPage extends AbstractPage { $this->editController = StringUtil::replace('ListPage', 'Edit', $className); } - parent::__construct(); + parent::__run(); } /** -- 2.20.1