* Fix upgrade vision for litevip.

This commit is contained in:
tanghucheng
2022-04-07 14:12:57 +08:00
parent 9065d0527e
commit 6f8d2334fd
+2 -2
View File
@@ -92,8 +92,8 @@ class upgrade extends control
{
if(strpos($key, 'lite') === false) unset($this->lang->upgrade->fromVersions[$key]);
}
$this->config->version = 'Lite' . $this->config->liteVersion;
$this->config->version = ($this->config->edition == 'biz' ? 'LiteVIP' : 'Lite') . $this->config->liteVersion;
}
$this->view->title = $this->lang->upgrade->common . $this->lang->colon . $this->lang->upgrade->selectVersion;