diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-31 13:53:08 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-31 13:53:08 +0100 |
commit | e5615b97cf1b295003d6e326be08a0eb5073e52c (patch) | |
tree | f1c1a901fbff98265929b46f9ea3732060b525d4 /program | |
parent | 3c309af0663f1673f921682c6ae3f673426e1397 (diff) | |
parent | 41db2bf47db6df8b6065986b7488f3fc538ebc14 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program')
-rw-r--r-- | program/lib/Roundcube/rcube_db.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php index 086a38ab4..a3475a2fd 100644 --- a/program/lib/Roundcube/rcube_db.php +++ b/program/lib/Roundcube/rcube_db.php @@ -70,7 +70,7 @@ class rcube_db $driver = isset($driver_map[$driver]) ? $driver_map[$driver] : $driver; $class = "rcube_db_$driver"; - if (!class_exists($class)) { + if (!$driver || !class_exists($class)) { rcube::raise_error(array('code' => 600, 'type' => 'db', 'line' => __LINE__, 'file' => __FILE__, 'message' => "Configuration error. Unsupported database driver: $driver"), |