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_pgsql.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_pgsql.php')
-rw-r--r-- | program/include/rcube_db_pgsql.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/include/rcube_db_pgsql.php b/program/include/rcube_db_pgsql.php index 285b8e2d4..0d0caadde 100644 --- a/program/include/rcube_db_pgsql.php +++ b/program/include/rcube_db_pgsql.php @@ -31,6 +31,8 @@ */ class rcube_db_pgsql extends rcube_db { + public $db_provider = 'postgres'; + /** * Get last inserted record ID * |