Removed unsupported parameter 'loadActiveOptions'
authorAlexander Ebert <ebert@woltlab.com>
Wed, 2 Jan 2013 01:48:11 +0000 (02:48 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Wed, 2 Jan 2013 01:48:11 +0000 (02:48 +0100)
Fixes #1013

wcfsetup/install/files/lib/acp/form/AbstractOptionListForm.class.php

index b003ae030297a70b5006eb1749bc525d52e98e70..64190dd6357d891c06c21177c9457c9e1bafb9c9 100755 (executable)
@@ -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();
        }