From ab4845c28c9b6eee15cd4d06946fef05b5b4c38b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Mon, 11 Jul 2022 23:35:02 +0800 Subject: [PATCH] Update Plugs.php --- app/admin/controller/api/Plugs.php | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/app/admin/controller/api/Plugs.php b/app/admin/controller/api/Plugs.php index e1e5ceeae..1edc06fb7 100644 --- a/app/admin/controller/api/Plugs.php +++ b/app/admin/controller/api/Plugs.php @@ -47,16 +47,14 @@ class Plugs extends Controller */ public function script(): \think\Response { - $debug = $this->app->isDebug() ? 'true' : 'false'; - $editor = sysconf("base.editor") ?: "ckeditor4"; - $taRoot = sysuri("admin/index/index", [], false); + $taDebug = $this->app->isDebug() ? 'true' : 'false'; + $taAdmin = sysuri('admin/index/index', [], false); + $taEditor = sysconf('base.editor') ?: 'ckeditor4'; return response(join("\n", [ - "window.taDebug = {$debug};", - "window.taAdmin = '{$taRoot}';", - "window.taEditor = '{$editor}';", - ]))->header([ - 'Content-Type' => 'application/x-javascript' - ]); + "window.taDebug = {$taDebug};", + "window.taAdmin = '{$taAdmin}';", + "window.taEditor = '{$taEditor}';", + ]))->contentType('application/x-javascript'); } /**