From 2f66102cfa5812841e515b98b3a4e78bd4ea76bd Mon Sep 17 00:00:00 2001 From: liwenrui Date: Wed, 28 Feb 2024 14:55:48 +0800 Subject: [PATCH] * fix ai app import modal not closing. --- module/ai/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/ai/control.php b/module/ai/control.php index c42ac13116..be59f74a6d 100644 --- a/module/ai/control.php +++ b/module/ai/control.php @@ -395,7 +395,7 @@ class ai extends control $ztApp->category = $_POST['category']; $this->ai->createMiniProgram($ztApp); unlink($fileName); - return $this->sendSuccess(array('message' => $this->lang->saveSuccess, 'locate' => $this->createLink('ai', 'miniprograms'))); + return $this->sendSuccess(array('message' => $this->lang->saveSuccess, 'locate' => 'reload')); } unlink($fileName); }