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); } } }