From 2c2903abfe9fbf4678f7fdafb75e80311092c2fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mr=C2=B7x?= Date: Mon, 31 Aug 2020 02:08:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- system/Abstracts/BaseApplication.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Abstracts/BaseApplication.php b/system/Abstracts/BaseApplication.php index 998ed9d3..1549d612 100644 --- a/system/Abstracts/BaseApplication.php +++ b/system/Abstracts/BaseApplication.php @@ -145,7 +145,7 @@ abstract class BaseApplication extends Service } if ($storage = Config::get('storage', false, 'storage')) { if (strpos($storage, APP_PATH) === false) { - $storage = realpath(APP_PATH . $storage); + $storage = APP_PATH . $storage . '/'; } if (!is_dir($storage)) { mkdir($storage, 777);