* Remove save success tips.

This commit is contained in:
liumengyi
2023-08-03 11:21:57 +08:00
parent 7cfe3bfaf6
commit f401d52c68
+2 -2
View File
@@ -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');