* Add missing ).

This commit is contained in:
songchenxuan
2023-06-13 14:18:18 +08:00
parent 8c9d50f02f
commit 4acd253052
+1 -1
View File
@@ -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)
{