mirror of
https://github.com/friendica/friendica
synced 2025-04-26 01:50:11 +00:00
Now the bugfix really should work
This commit is contained in:
parent
2d99e86b12
commit
4f6f47f714
3 changed files with 10 additions and 4 deletions
|
@ -1338,6 +1338,10 @@ class dba {
|
|||
* @return array Data array
|
||||
*/
|
||||
static public function inArray($stmt, $do_close = true) {
|
||||
if (is_bool($stmt)) {
|
||||
return $stmt;
|
||||
}
|
||||
|
||||
$data = array();
|
||||
while ($row = self::fetch($stmt)) {
|
||||
$data[] = $row;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue