bug #1116933 parameter to mysqli_free_resul
This commit is contained in:
@@ -160,7 +160,11 @@ function PMA_DBI_fetch_row($result) {
|
||||
}
|
||||
|
||||
function PMA_DBI_free_result($result) {
|
||||
return @mysql_free_result($result);
|
||||
if (!is_bool($result)) {
|
||||
return mysql_free_result($result);
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
function PMA_DBI_getError($link = NULL) {
|
||||
|
@@ -176,7 +176,11 @@ function PMA_DBI_fetch_row($result) {
|
||||
}
|
||||
|
||||
function PMA_DBI_free_result($result) {
|
||||
return @mysqli_free_result($result);
|
||||
if (!is_bool($result)) {
|
||||
return mysqli_free_result($result);
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
function PMA_DBI_getError($link = NULL) {
|
||||
|
Reference in New Issue
Block a user