From f8412b828f48b74e04851d0523fc11afc89f2117 Mon Sep 17 00:00:00 2001
From: F4NNIU <sparkamax@gmail.com>
Date: Tue, 19 Dec 2017 16:49:17 +0800
Subject: [PATCH] 将文件检查函数改为 is_file,为了提高效率,来自群友 Jesns 建议。

---
 public/admin.php | 4 ++--
 public/index.php | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/public/admin.php b/public/admin.php
index bc87c19..9f19b84 100644
--- a/public/admin.php
+++ b/public/admin.php
@@ -16,7 +16,7 @@
 define('APP_PATH', __DIR__ . '/../application/');
 
 // 判断是否安装FastAdmin
-if (!file_exists(APP_PATH . 'admin/command/Install/install.lock'))
+if (!is_file(APP_PATH . 'admin/command/Install/install.lock'))
 {
     header("location:./install.php");
     exit;
@@ -32,4 +32,4 @@ require __DIR__ . '/../thinkphp/base.php';
 \think\Url::root('');
 
 // 执行应用
-\think\App::run()->send();
\ No newline at end of file
+\think\App::run()->send();
diff --git a/public/index.php b/public/index.php
index 249ed69..004784d 100755
--- a/public/index.php
+++ b/public/index.php
@@ -14,7 +14,7 @@
 define('APP_PATH', __DIR__ . '/../application/');
 
 // 判断是否安装FastAdmin
-if (!file_exists(APP_PATH . 'admin/command/Install/install.lock'))
+if (!is_file(APP_PATH . 'admin/command/Install/install.lock'))
 {
     header("location:./install.php");
     exit;
--
libgit2 0.24.0