diff options
author | svncommit <devs@roundcube.net> | 2005-10-02 11:36:35 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2005-10-02 11:36:35 +0000 |
commit | 1676e1ebda38922b609c501b3c3c34b881302122 (patch) | |
tree | af115b449e30bac37d7cf0459ed95d88d32f1282 /program/include/main.inc | |
parent | 968bdc7c90f718560b84eb3b7e8e1d02cf4270f3 (diff) |
Added PEAR:DB support plus database replication support
Diffstat (limited to 'program/include/main.inc')
-rw-r--r-- | program/include/main.inc | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index 83421768a..ebf2f2685 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -54,23 +54,10 @@ function rcmail_startup($task='mail') // prepare DB connection - if (strtolower($CONFIG['db_type'])=='mysql') - $DB = new rcube_mysql($CONFIG['db_name'], $CONFIG['db_user'], $CONFIG['db_pass'], $CONFIG['db_host']); - - // database not supported - else - { - raise_error(array('code' => 500, - 'type' => 'php', - 'line' => __LINE__, - 'file' => __FILE__, - 'message' => "Database not supported"), TRUE, TRUE); - return; - } - + $DB = new rcube_db($CONFIG['db_dsnw'], $CONFIG['db_dsnr']); // we can use the database for storing session data - if (is_object($DB) && $DB->connect()) + if (is_object($DB)) include_once('include/session.inc'); |