From bb1f205b7ac95d9326a01f24b043e02dc0aad40b Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Wed, 2 Jan 2013 02:48:11 +0100 Subject: [PATCH] Removed unsupported parameter 'loadActiveOptions' Fixes #1013 --- .../files/lib/acp/form/AbstractOptionListForm.class.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/wcfsetup/install/files/lib/acp/form/AbstractOptionListForm.class.php b/wcfsetup/install/files/lib/acp/form/AbstractOptionListForm.class.php index b003ae0302..64190dd635 100755 --- a/wcfsetup/install/files/lib/acp/form/AbstractOptionListForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/AbstractOptionListForm.class.php @@ -48,12 +48,6 @@ abstract class AbstractOptionListForm extends AbstractForm { */ protected $languageItemPattern = ''; - /** - * true if active options are loaded when option handler is initialized - * @var boolean - */ - public $loadActiveOptions = true; - /** * option handler object * @var wcf\system\option\IOptionHandler @@ -78,7 +72,7 @@ abstract class AbstractOptionListForm extends AbstractForm { public function readParameters() { parent::readParameters(); - $this->optionHandler = new $this->optionHandlerClassName($this->cacheName, $this->cacheClass, $this->supportI18n, $this->languageItemPattern, $this->categoryName, $this->loadActiveOptions); + $this->optionHandler = new $this->optionHandlerClassName($this->cacheName, $this->cacheClass, $this->supportI18n, $this->languageItemPattern, $this->categoryName); $this->initOptionHandler(); } -- 2.20.1