diff options
author | thomascube <thomas@roundcube.net> | 2006-06-25 09:17:07 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-06-25 09:17:07 +0000 |
commit | cbdd6dcaea09c875be26333a273ba598b6ba9bc2 (patch) | |
tree | b7f4c69512e16111a53f47be9bdd5e65984c5472 /program/include/rcube_db.inc | |
parent | 1966c53255495890dd7f25c31bac73d97ecc3291 (diff) |
Fixed persistent connections with PHP4
Diffstat (limited to 'program/include/rcube_db.inc')
-rwxr-xr-x | program/include/rcube_db.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/rcube_db.inc b/program/include/rcube_db.inc index 573168887..5b32798a7 100755 --- a/program/include/rcube_db.inc +++ b/program/include/rcube_db.inc @@ -14,6 +14,7 @@ | | +-----------------------------------------------------------------------+ | Author: David Saez Padros <david@ols.es> | + | Thomas Bruederli <roundcube@gmail.com> | +-----------------------------------------------------------------------+ $Id$ @@ -80,7 +81,7 @@ class rcube_db */ function rcube_db($db_dsnw, $db_dsnr='', $pconn=false) { - $this->__construct($db_dsnw, $db_dsnr); + $this->__construct($db_dsnw, $db_dsnr, $pconn); } |