From c11bae3c96fe3c5b2cec9003cf55819a320ab6ec Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 28 Jul 2022 14:48:14 +0800 Subject: [PATCH] * Fix bug #25813. --- module/custom/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/custom/control.php b/module/custom/control.php index a770c7b2e6..85b894cd41 100644 --- a/module/custom/control.php +++ b/module/custom/control.php @@ -609,7 +609,7 @@ class custom extends control if($this->config->edition != 'max') $this->loadModel('setting')->setItem('system.custom.hourPoint', $this->post->hourPoint); $this->app->loadLang('common'); - $locate = $this->config->systemMode == 'new' ? inlink('flow') : 'top'; + $locate = $this->config->systemMode == 'new' ? 'parent' : 'top'; return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'locate' => $locate)); }