mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-25 19:00:03 +03:00
fixes #2322 set to 0 if null
some values being used in $result are null
This commit is contained in:
parent
a0ea91695b
commit
7f24787b42
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ function pwg_db_changes()
|
|||
|
||||
function pwg_db_num_rows($result)
|
||||
{
|
||||
return $result->num_rows;
|
||||
return $result->num_rows ?? 0;
|
||||
}
|
||||
|
||||
function pwg_db_fetch_array($result)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue