From 2d26ddde4767cb354d9e518e8dc1d2d941c24b73 Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Wed, 26 Jul 2023 13:14:45 +0800 Subject: [PATCH] * Modify bi showGuide. --- module/screen/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/screen/control.php b/module/screen/control.php index 987791915d..44295015d2 100644 --- a/module/screen/control.php +++ b/module/screen/control.php @@ -48,7 +48,7 @@ class screen extends control } $lang = (strpos($this->app->getClientLang(), 'zh') !== false) ? 'zh' : 'en'; - $version = ($this->config->edition == 'biz' or $this->config->edition == 'max') ? 'biz' : 'pms'; + $version = $this->config->edition == 'pms' ? 'pms' : 'biz'; $imageURL = "static/images/bi_guide_{$version}_{$lang}.png"; $moduleKey = $version . 'Guide';