fix db_free

This commit is contained in:
jbousquie
2016-11-18 16:27:35 +01:00
parent 451841b604
commit 9138c01dc4
3 changed files with 29 additions and 32 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ function db_escape_string($db, $string) {
// Fonction : db_free
// Libère la mémoire
function db_free($res) {
$res->free();
function db_free($db, $res) {
$db->free($res);
}
?>