diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-10-03 23:22:32 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-10-03 23:22:32 +0200 |
commit | 88107d6cf54f62ec23daf94d68700fc000394c35 (patch) | |
tree | a0ad204be284c56ca53bbfefdda6739258d9ad15 /program/include/rcube_db.php | |
parent | 05c4edf34bcff89fcae80389e890fa07271f5275 (diff) |
Define public property 'db_provider' in pdo classes. That is used in various places, especially the installer
Diffstat (limited to 'program/include/rcube_db.php')
-rw-r--r-- | program/include/rcube_db.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/include/rcube_db.php b/program/include/rcube_db.php index eb1ad31b2..b066101b3 100644 --- a/program/include/rcube_db.php +++ b/program/include/rcube_db.php @@ -30,6 +30,8 @@ */ class rcube_db { + public $db_provider; + protected $db_dsnw; // DSN for write operations protected $db_dsnr; // DSN for read operations protected $db_connected = false; // Already connected ? |