From 46fdcccdfd8a8cdcebfa3a5ae658a1664f9186f1 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Thu, 17 Aug 2023 09:07:11 +0800 Subject: [PATCH] * Fix bug #37367. --- module/upgrade/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/upgrade/model.php b/module/upgrade/model.php index 1438ff8ec2..70a4425b85 100644 --- a/module/upgrade/model.php +++ b/module/upgrade/model.php @@ -24,7 +24,7 @@ class upgradeModel extends model public function __construct() { parent::__construct(); - if($this->config->edition == 'ipd') $this->config->vision = 'rnd'; + if($this->config->edition != 'lite') $this->config->vision = 'rnd'; $this->loadModel('setting'); }