From: Marcel Werk Date: Thu, 13 Oct 2011 16:21:04 +0000 (+0200) Subject: Moved execution of initApplications() to the end of WCF::__construct() X-Git-Tag: 2.0.0_Beta_1~1689 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=86433d6280edc5f20c246d84479313205cbb5efb;p=GitHub%2FWoltLab%2FWCF.git Moved execution of initApplications() to the end of WCF::__construct() --- diff --git a/wcfsetup/install/files/lib/system/WCF.class.php b/wcfsetup/install/files/lib/system/WCF.class.php index e673a65eaa..c754e06534 100644 --- a/wcfsetup/install/files/lib/system/WCF.class.php +++ b/wcfsetup/install/files/lib/system/WCF.class.php @@ -113,8 +113,8 @@ class WCF { $this->initLanguage(); $this->initTPL(); $this->initBlacklist(); - $this->initApplications(); $this->initCoreObjects(); + $this->initApplications(); } /**