From e9c5549e6590db0bcc240a7b92d530c0dd3038dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=99=E8=BF=B0=E3=80=81=E5=88=AB=E7=A6=BB?= <2449271624@qq.com> Date: Tue, 10 Oct 2023 17:53:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96404=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E4=B8=BB=E9=A1=B5=E5=8F=8D=E6=AD=A3=E6=B5=8F?= =?UTF-8?q?=E8=A7=88=E4=B8=A2=E5=A4=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/system/archive/taglist.class.php | 2 +- src/system/helpers/extend.helper.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/archive/taglist.class.php b/src/system/archive/taglist.class.php index 5c6380bb..bfbfa2bc 100755 --- a/src/system/archive/taglist.class.php +++ b/src/system/archive/taglist.class.php @@ -61,7 +61,7 @@ class TagList if (!empty($this->Tag)) { $this->TagInfos = $this->dsql->GetOne("SELECT * FROM `#@__tagindex` where id = '{$this->Tag}' "); if (!is_array($this->TagInfos)) { - ShowMsg('当前标签不存在,系统自动返回标签首页', 'tags.php'); + ShowMsg('当前标签不存在,系统自动返回主页', '/'); exit(); } $this->Fields['title'] = empty($this->TagInfos['title']) ? $this->TagInfos['tag'] : $this->TagInfos['title']; diff --git a/src/system/helpers/extend.helper.php b/src/system/helpers/extend.helper.php index 1fbcf9b7..06d51317 100755 --- a/src/system/helpers/extend.helper.php +++ b/src/system/helpers/extend.helper.php @@ -29,7 +29,7 @@ if (!function_exists('ParCv')) { if (!function_exists('ParamError')) { function ParamError() { - ShowMsg('当前网页不存在,系统自动返回首页', 'index.php'); + ShowMsg('当前网页不存在,系统自动返回主页', '/'); exit(); } }