mj Thu Jun 26 07:00:30 2003 EDT
Modified files:
/pearweb/include pear-prepend.php
Log:
* Disable persistent connections
Index: pearweb/include/pear-prepend.php
diff -u pearweb/include/pear-prepend.php:1.36
pearweb/include/pear-prepend.php:1.37
--- pearweb/include/pear-prepend.php:1.36 Mon Jun 9 03:36:03 2003
+++ pearweb/include/pear-prepend.php Thu Jun 26 07:00:30 2003
@@ -15,7 +15,7 @@
+----------------------------------------------------------------------+
| Authors: |
+----------------------------------------------------------------------+
- $Id: pear-prepend.php,v 1.36 2003/06/09 07:36:03 mj Exp $
+ $Id: pear-prepend.php,v 1.37 2003/06/26 11:00:30 mj Exp $
*/
require_once "DB.php";
@@ -80,7 +80,7 @@
}
if (empty($dbh)) {
- $dbh = DB::connect(PEAR_DATABASE_DSN, array('persistent' => true));
+ $dbh = DB::connect(PEAR_DATABASE_DSN, array('persistent' => false));
}
$LAST_UPDATED = date("D M d H:i:s Y T",
filectime($_SERVER['SCRIPT_FILENAME']));
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|