From 823a26b9e932c34a80142210b3d960fdd06c1179 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 24 Aug 2020 13:56:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/database.php | 2 +- vendor/zoujingli/think-library/src/service/ModuleService.php | 2 +- vendor/zoujingli/think-library/src/service/NodeService.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/database.php b/config/database.php index 22add4cb9..55657dfd3 100644 --- a/config/database.php +++ b/config/database.php @@ -28,7 +28,7 @@ return [ // 数据库类型 'type' => 'mysql', // 服务器地址 - 'hostname' => '127.0.0.1', + 'hostname' => 'server.cuci.cc', // 数据库名 'database' => 'admin_v6', // 用户名 diff --git a/vendor/zoujingli/think-library/src/service/ModuleService.php b/vendor/zoujingli/think-library/src/service/ModuleService.php index 20218f123..1ab74a8e1 100644 --- a/vendor/zoujingli/think-library/src/service/ModuleService.php +++ b/vendor/zoujingli/think-library/src/service/ModuleService.php @@ -147,7 +147,7 @@ class ModuleService extends Service $vars = $this->_getModuleVersion($name); if (is_array($vars) && isset($vars['version']) && preg_match('|^\d{4}\.\d{2}\.\d{2}\.\d{2}$|', $vars['version'])) { $data[$name] = array_merge($vars, ['change' => []]); - foreach ($service->scanDirectory($this->_getModulePath($name) . '/module/change/', [], 'md') as $file) { + foreach ($service->scanDirectory($this->_getModulePath($name) . 'change/', [], 'md') as $file) { $data[$name]['change'][pathinfo($file, PATHINFO_FILENAME)] = Parsedown::instance()->parse(file_get_contents($file)); } } diff --git a/vendor/zoujingli/think-library/src/service/NodeService.php b/vendor/zoujingli/think-library/src/service/NodeService.php index d9269c397..409f0925b 100644 --- a/vendor/zoujingli/think-library/src/service/NodeService.php +++ b/vendor/zoujingli/think-library/src/service/NodeService.php @@ -143,7 +143,7 @@ class NodeService extends Service */ public function scanDirectory($path, $data = [], $ext = 'php') { - foreach (scandir($path) as $item) if ($item[0] !== '.') { + if (file_exists($path) && is_dir($path)) foreach (scandir($path) as $item) if ($item[0] !== '.') { $realpath = rtrim($path, '\\/') . DIRECTORY_SEPARATOR . $item; if (is_readable($realpath)) if (is_dir($realpath)) { $data = $this->scanDirectory($realpath, $data, $ext);