added filter to Address

This commit is contained in:
Frank Schubert
2021-11-30 22:05:03 +01:00
parent 29f63d41a7
commit 6fa6dbbd87
4 changed files with 332 additions and 12 deletions

View File

@@ -131,7 +131,7 @@ class BuildingModel {
private function getSqlFilter($filter) {
$where = "1=1 ";
if(array_key_exists("network_id", $filter)) {
$network_id = $filter['network_id'];
if(is_numeric($network_id)) {