From 1a4a6b5ff90d0d557ed6ea1a1045f9713c83bbbd Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 5 Jul 2011 17:45:33 -0700 Subject: explicitly close db connections - do not rely on process exit --- include/dba.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/dba.php b/include/dba.php index 49b325cf7..32f1ac3ed 100644 --- a/include/dba.php +++ b/include/dba.php @@ -212,4 +212,13 @@ function dbesc_array(&$arr) { if(is_array($arr) && count($arr)) { array_walk($arr,'dbesc_array_cb'); } -}} \ No newline at end of file +}} + + +if(! function_exists('closedb')) { +function closedb() { + global $db; + if($db && $db->connected) + $db->close(); +}} + -- cgit v1.2.3