summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-06-25 09:17:07 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-06-25 09:17:07 +0000
commit95850713f5d8ca00bd0307a1bf982fc73df2bc63 (patch)
tree3a3f6fcb357fd7222140a0498f8235511a29f09d
parenteb842e0f7067d7b1fb117b8ff0498c3ce527602c (diff)
Fixed persistent connections with PHP4
git-svn-id: https://svn.roundcube.net/trunk@262 208e9e7b-5314-0410-a742-e7e81cd9613c
-rwxr-xr-xroundcubemail/program/include/rcube_db.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_db.inc b/roundcubemail/program/include/rcube_db.inc
index 573168887..5b32798a7 100755
--- a/roundcubemail/program/include/rcube_db.inc
+++ b/roundcubemail/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);
}