Finished Address BMD Export

This commit is contained in:
Frank Schubert
2024-01-05 18:22:17 +01:00
parent 3591da6729
commit f81fd2be06
6 changed files with 90 additions and 7 deletions

View File

@@ -166,7 +166,7 @@ class AddressModel {
$res = $db->query($sql);
if($db->num_rows($res)) {
$data = $db->fetch_object($res);
return $data->cnt;
return (int)$data->cnt;
}
return 0;
}