This is mysql extension.

This commit is contained in:
Michal Čihař
2005-12-09 11:57:12 +00:00
parent fa383a0eb4
commit bffbf8c8bc
2 changed files with 2 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ $Source$
* Documentation.html: Clarify http auth description. * Documentation.html: Clarify http auth description.
* scripts/setup.php: Show available version information even when using * scripts/setup.php: Show available version information even when using
CVS version. CVS version.
* libraries/dbi/mysql.dbi.lib.php: This is mysql extension.
2005-12-09 Sebastian Mendel <cybot_tm@users.sourceforge.net> 2005-12-09 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries/dbi: * libraries/dbi:

View File

@@ -153,7 +153,7 @@ function PMA_DBI_free_result() {
foreach ( func_get_args() as $result ) { foreach ( func_get_args() as $result ) {
if ( is_resource($result) if ( is_resource($result)
&& get_resource_type($result) === 'mysql result' ) { && get_resource_type($result) === 'mysql result' ) {
mysqli_free_result($result); mysql_free_result($result);
} }
} }
} }