From: Matthias Schmidt Date: Tue, 12 Jun 2012 20:23:54 +0000 (+0200) Subject: Fixes usage of __construct instead of __run X-Git-Tag: 2.0.0_Beta_1~1006^2~1^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=be2160fc5d77b0e80503ca03357b9807392735bd;p=GitHub%2FWoltLab%2FWCF.git Fixes usage of __construct instead of __run --- 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(); } /**