diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-06-28 10:07:44 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-06-28 10:07:44 +0200 |
commit | 6d5a1b9e8f426d5ddc7c5bf2840a25859ab9d9e1 (patch) | |
tree | a7c6f5fe2eb5a44a74ed76256845a6e55d0f18c0 /program/lib | |
parent | 2c3c5884e3005bfec7408c6718e48bc5af380000 (diff) |
Get rid of some rcube_config::all() calls
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/rcube.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php index cf54c3c12..5f55414e6 100644 --- a/program/lib/Roundcube/rcube.php +++ b/program/lib/Roundcube/rcube.php @@ -172,9 +172,13 @@ class rcube public function get_dbh() { if (!$this->db) { - $config_all = $this->config->all(); - $this->db = rcube_db::factory($config_all['db_dsnw'], $config_all['db_dsnr'], $config_all['db_persistent']); - $this->db->set_debug((bool)$config_all['sql_debug']); + $this->db = rcube_db::factory( + $this->config->get('db_dsnw'), + $this->config->get('db_dsnr'), + $this->config->get('db_persistent') + ); + + $this->db->set_debug((bool)$this->config->get('sql_debug')); } return $this->db; |