summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pear/DB.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/pear/DB.php b/pear/DB.php
index bf35adbd87..a714950a7b 100644
--- a/pear/DB.php
+++ b/pear/DB.php
@@ -208,7 +208,8 @@ class DB
$dsninfo = DB::parseDSN($dsn);
}
$type = $dsninfo["phptype"];
-
+
+ @include_once "DB/${type}.php";
$classname = "DB_${type}";
@$obj =& new $classname;