From: Alexander Ebert Date: Wed, 2 Jan 2013 01:48:11 +0000 (+0100) Subject: Removed unsupported parameter 'loadActiveOptions' X-Git-Tag: 2.0.0_Beta_1~606^2~6 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bb1f205b7ac95d9326a01f24b043e02dc0aad40b;p=GitHub%2FWoltLab%2FWCF.git Removed unsupported parameter 'loadActiveOptions' Fixes #1013 --- 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(); }