Fix tableprefix and cart mysql

This commit is contained in:
Frank Harris 2025-11-10 07:23:01 -05:00
parent 723dd58e71
commit ba6b8d9e6b
19 changed files with 161 additions and 39 deletions

View file

@ -50,7 +50,11 @@ if ($is_logged_in) {
}
}
if ($menu_db_opened) {
mysqli_close($menu_db);
if (function_exists('billing_maybe_close_db')) {
billing_maybe_close_db($menu_db);
} else {
@mysqli_close($menu_db);
}
}
}
}