From f401d52c688c2bfd66b4e612f7bac4c788a82793 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Thu, 3 Aug 2023 11:21:57 +0800 Subject: [PATCH] * Remove save success tips. --- module/install/control.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/install/control.php b/module/install/control.php index 9486c10088..252eec0e58 100644 --- a/module/install/control.php +++ b/module/install/control.php @@ -126,7 +126,7 @@ class install extends control $myConfig = array(); foreach($_POST as $key => $value) $myConfig[$key] = $value; $this->session->set('myConfig', $myConfig); - return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => inlink('step3'))); + return $this->send(array('result' => 'success', 'load' => inlink('step3'))); } $dbHost = $dbPort = $dbName = $dbUser = $dbPassword = ''; @@ -278,7 +278,7 @@ class install extends control if($this->config->edition != 'open') $this->loadModel('upgrade')->processDataset(); - return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'load' => inlink('step6'))); + return $this->send(array('result' => 'success', 'load' => inlink('step6'))); } $this->app->loadLang('upgrade');