From 26e3879559b66ed5f343bced3121f25e85b0adcb Mon Sep 17 00:00:00 2001 From: thinkphp Date: Thu, 8 Dec 2016 22:14:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E8=BF=9BApp=E7=B1=BB=E7=9A=84initComm?= =?UTF-8?q?on=E7=9A=84=E8=BF=94=E5=9B=9E=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/think/App.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/think/App.php b/library/think/App.php index 367b4ae6..01af92ce 100644 --- a/library/think/App.php +++ b/library/think/App.php @@ -450,9 +450,9 @@ class App // 监听app_init Hook::listen('app_init'); - self::$init = $config; + self::$init = true; } - return self::$init; + return Config::get(); } /**