1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Vincent Bernat <bernat@luffy.cx>
Date: Fri, 12 Jul 2013 23:09:34 +0200
Subject: Map dbconfig-common's "sqlite3" driver to "sqlite"
Bug-Debian: https://bugs.debian.org/714727
Forwarded: not-needed
---
program/lib/Roundcube/rcube_db.php | 1 +
1 file changed, 1 insertion(+)
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php
index 96090cb..6387b47 100644
--- a/program/lib/Roundcube/rcube_db.php
+++ b/program/lib/Roundcube/rcube_db.php
@@ -81,6 +81,7 @@ class rcube_db
$driver = strtolower(substr($db_dsnw, 0, strpos($db_dsnw, ':')));
$driver_map = [
'sqlite2' => 'sqlite',
+ 'sqlite3' => 'sqlite',
'sybase' => 'mssql',
'dblib' => 'mssql',
'mysqli' => 'mysql',
|