fixes #2322 set to 0 if null

some values being used in $result are null
This commit is contained in:
HWFord 2025-02-18 10:24:33 +01:00
parent a0ea91695b
commit 7f24787b42

View file

@ -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)