From 86433d6280edc5f20c246d84479313205cbb5efb Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Thu, 13 Oct 2011 18:21:04 +0200 Subject: [PATCH] Moved execution of initApplications() to the end of WCF::__construct() --- wcfsetup/install/files/lib/system/WCF.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } /** -- 2.20.1