diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-29 11:34:43 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-29 11:59:07 +0200 |
commit | 720e7d376ffe0fb625d0b1e250121823a71da094 (patch) | |
tree | cfafb6731e3978926fff6150d05d25df567f9c47 /installer/test.php | |
parent | 7e3af82c4f7081d4ae0af9d7eea91d29f20bfd73 (diff) |
Fix varius db_prefix issues (#1489839)
- Move DDL script execution code to rcube_db class(es).
- Improve prefix replacement code, so index names are also modified
Diffstat (limited to 'installer/test.php')
-rw-r--r-- | installer/test.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/installer/test.php b/installer/test.php index 5d28d5f57..40b052bdc 100644 --- a/installer/test.php +++ b/installer/test.php @@ -115,6 +115,7 @@ $db_working = false; if ($RCI->configured) { if (!empty($RCI->config['db_dsnw'])) { $DB = rcube_db::factory($RCI->config['db_dsnw'], '', false); + $DB->set_debug((bool)$RCI->config['sql_debug']); $DB->db_connect('w'); if (!($db_error_msg = $DB->is_error())) { |