From 9921f7f98b359d31ffa97d524a2b3c7b616c2c19 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Tue, 1 Aug 2023 08:59:35 +0800 Subject: [PATCH] * Use the page in the ui during installation. --- framework/base/control.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/base/control.class.php b/framework/base/control.class.php index d20381bec8..ed6ed29567 100644 --- a/framework/base/control.class.php +++ b/framework/base/control.class.php @@ -943,7 +943,7 @@ class baseControl */ public function display(string $moduleName = '', string $methodName = '') { - if($this->config->debug && $this->viewType === 'html' && (!isset($_GET['zin']) || $_GET['zin'] != '0')) + if($this->viewType === 'html' && (!isset($_GET['zin']) || $_GET['zin'] != '0')) { if(empty($moduleName)) $moduleName = $this->moduleName; if(empty($methodName)) $methodName = $this->methodName;