diff options
| author | Aleksander Machniak <alec@alec.pl> | 2013-01-31 13:18:38 +0100 |
|---|---|---|
| committer | Aleksander Machniak <alec@alec.pl> | 2013-02-01 20:12:58 +0100 |
| commit | d3b18e6fc9a496b0df6166d61313c968531f0c45 (patch) | |
| tree | a4de37ef347c494c2ae6d2c367464f701eccc6c9 /program/lib/Roundcube | |
| parent | 8c6ef8f05b46415ee86427a78f68578378ecb817 (diff) | |
Slightly improve database driver chack
Diffstat (limited to 'program/lib/Roundcube')
| -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"), |
