mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 19:38:53 +00:00
Merge remote-tracking branch 'bantu/ticket/10995' into develop-olympus
* bantu/ticket/10995: [ticket/10995] Return false in mssqlnative sql_fetchrow on empty result
This commit is contained in:
commit
0f70c930df
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ class dbal_mssqlnative extends dbal
|
|||
unset($row['line2'], $row['line3']);
|
||||
}
|
||||
}
|
||||
return $row;
|
||||
return (sizeof($row)) ? $row : false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue