From d6c83c4c5b48dcc199d81c3daa759f614668450f Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 11 Nov 2019 14:13:55 +0800 Subject: [PATCH] Update sys.php --- app/admin/sys.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/admin/sys.php b/app/admin/sys.php index ce68edc2d..3da9f72f6 100644 --- a/app/admin/sys.php +++ b/app/admin/sys.php @@ -46,10 +46,9 @@ if (!function_exists('sysoplog')) { $app = app(); return $app->db->name('SystemOplog')->insert([ 'node' => \think\admin\service\NodeService::instance($app)->getCurrent(), - 'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : $app->request->ip(), - 'action' => $action, - 'content' => $content, - 'username' => PHP_SAPI === 'cli' ? 'cli' : $app->session->get('user.username'), + 'geoip' => $app->request->isCli() ? '127.0.0.1' : $app->request->ip(), + 'action' => $action, 'content' => $content, + 'username' => $app->request->isCli() ? 'cli' : $app->session->get('user.username', ''), ]); } }