mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/10995] Return false in mssqlnative sql_fetchrow on empty result
This commit is contained in:
commit
a4e699db49
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,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