Open dakusan opened 2 years ago
mysqli_fetch_array returns NULL when there are no more results, but mysql_fetch_array returned FALSE. To fix, change line 249 from return mysqli_fetch_array($result, $result_type); to return mysqli_fetch_array($result, $result_type) ?? FALSE;
mysqli_fetch_array
NULL
mysql_fetch_array
FALSE
return mysqli_fetch_array($result, $result_type);
return mysqli_fetch_array($result, $result_type) ?? FALSE;
mysqli_fetch_array
returnsNULL
when there are no more results, butmysql_fetch_array
returnedFALSE
. To fix, change line 249 fromreturn mysqli_fetch_array($result, $result_type);
toreturn mysqli_fetch_array($result, $result_type) ?? FALSE;