1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 14:46:36 +02:00

MS SQL: Fix type

This commit is contained in:
Jakub Vrana
2025-03-31 09:34:13 +02:00
parent 21347e6ef5
commit 30a8c4caca

View File

@@ -92,7 +92,7 @@ if (isset($_GET["mssql"])) {
}
function next_result(): bool {
return $this->result ? sqlsrv_next_result($this->result) : null;
return $this->result ? !!sqlsrv_next_result($this->result) : false;
}
}