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

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