explicitly close db connections - do not rely on process exit
This commit is contained in:
parent
308d98f7ac
commit
1a4a6b5ff9
1
boot.php
1
boot.php
|
@ -989,6 +989,7 @@ function autoname($len) {
|
||||||
if(! function_exists('killme')) {
|
if(! function_exists('killme')) {
|
||||||
function killme() {
|
function killme() {
|
||||||
session_write_close();
|
session_write_close();
|
||||||
|
closedb();
|
||||||
exit;
|
exit;
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
|
@ -212,4 +212,13 @@ function dbesc_array(&$arr) {
|
||||||
if(is_array($arr) && count($arr)) {
|
if(is_array($arr) && count($arr)) {
|
||||||
array_walk($arr,'dbesc_array_cb');
|
array_walk($arr,'dbesc_array_cb');
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
||||||
|
if(! function_exists('closedb')) {
|
||||||
|
function closedb() {
|
||||||
|
global $db;
|
||||||
|
if($db && $db->connected)
|
||||||
|
$db->close();
|
||||||
|
}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue