* Code for task #42154.

This commit is contained in:
liyuchun
2021-09-03 14:15:05 +08:00
parent baa6f023b0
commit 58577bb42c
3 changed files with 7 additions and 20 deletions
-13
View File
@@ -182,19 +182,6 @@ class install extends control
$this->app->loadLang('upgrade');
if(isset($this->config->bizVersion))
{
$this->lang->install->introductionContent = sprintf($this->lang->install->introductionContent, $this->lang->bizName, $this->lang->bizName);
}
elseif(isset($this->config->proVersion))
{
$this->lang->install->introductionContent = sprintf($this->lang->install->introductionContent, $this->lang->proName, $this->lang->proName);
}
else
{
$this->lang->install->introductionContent = sprintf($this->lang->install->introductionContent, $this->lang->pmsName, $this->lang->pmsName);
}
$this->view->title = $this->lang->install->introduction;
$this->display();
}