mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 11:22:34 +09:00
Fix incorrect prefix handling in autoinstall
This commit is contained in:
parent
1c90e1286f
commit
92be5ac0ef
2 changed files with 4 additions and 4 deletions
|
|
@ -187,7 +187,7 @@ class installController extends install
|
|||
'db_userid' => Context::get('db_userid'),
|
||||
'db_password' => Context::get('db_password'),
|
||||
'db_database' => Context::get('db_database'),
|
||||
'db_table_prefix' => rtrim(Context::get('db_table_prefix'), '_'),
|
||||
'db_table_prefix' => Context::get('db_table_prefix'),
|
||||
);
|
||||
$db_info->slave_db = array($db_info->master_db);
|
||||
$db_info->default_url = Context::getRequestUri();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue