From bffbf8c8bc3e28bc6ea39ae5373a13507cb43d37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 9 Dec 2005 11:57:12 +0000 Subject: [PATCH] This is mysql extension. --- ChangeLog | 1 + libraries/dbi/mysql.dbi.lib.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5d6f971c5..9cbf88a9a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,7 @@ $Source$ * Documentation.html: Clarify http auth description. * scripts/setup.php: Show available version information even when using CVS version. + * libraries/dbi/mysql.dbi.lib.php: This is mysql extension. 2005-12-09 Sebastian Mendel * libraries/dbi: diff --git a/libraries/dbi/mysql.dbi.lib.php b/libraries/dbi/mysql.dbi.lib.php index 43e730ed8..cf5d1d111 100644 --- a/libraries/dbi/mysql.dbi.lib.php +++ b/libraries/dbi/mysql.dbi.lib.php @@ -153,7 +153,7 @@ function PMA_DBI_free_result() { foreach ( func_get_args() as $result ) { if ( is_resource($result) && get_resource_type($result) === 'mysql result' ) { - mysqli_free_result($result); + mysql_free_result($result); } } }