Remove obsolete WCFACP::initPackage()
authorTim Düsterhus <duesterhus@woltlab.com>
Thu, 12 May 2022 10:39:18 +0000 (12:39 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Thu, 12 May 2022 10:39:18 +0000 (12:39 +0200)
Ever since WoltLab Suite Core got its own frontend the PACKAGE_ID constant
should be defined at all times, making this method obsolete.

wcfsetup/install/files/lib/system/WCFACP.class.php

index 8fc2ffdf4dbbe113cf9d3ffc12a78e3c421c5974..06cc3701094bc996e8c1a5b23bd9bf5ac5c42cc2 100644 (file)
@@ -60,7 +60,6 @@ class WCFACP extends WCF
         // start initialization
         $this->initDB();
         $this->loadOptions();
-        $this->initPackage();
         $this->initSession();
         $this->initLanguage();
         $this->initTPL();
@@ -283,17 +282,6 @@ class WCFACP extends WCF
         ]);
     }
 
-    /**
-     * Initializes the active package.
-     */
-    protected function initPackage()
-    {
-        // define active package id
-        if (!\defined('PACKAGE_ID')) {
-            \define('PACKAGE_ID', 1);
-        }
-    }
-
     /**
      * @deprecated 5.4 The master password is deprecated in favor of proper MFA (https://github.com/WoltLab/WCF/issues/3698).
      */