From 4acd25305207465b1c7b407166f9c1ebab25b638 Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Tue, 13 Jun 2023 14:18:18 +0800 Subject: [PATCH] * Add missing ). --- module/install/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/install/model.php b/module/install/model.php index fb120cffb2..d31d0b4dc5 100644 --- a/module/install/model.php +++ b/module/install/model.php @@ -393,7 +393,7 @@ class installModel extends model $dbFile = $this->app->getAppRoot() . 'db' . DS . 'zentao.sql'; $tables = explode(';', file_get_contents($dbFile)); - if($this->config->db->driver == 'dm') $tables = array_merge($tables, explode(';', file_get_contents($this->app->getAppRoot() . 'db' . DS . 'dm.sql')); + if($this->config->db->driver == 'dm') $tables = array_merge($tables, explode(';', file_get_contents($this->app->getAppRoot() . 'db' . DS . 'dm.sql'))); foreach($tables as $table) {