X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/fed2c307a7832ab8ffd3df04bb279df808be08d2..764dcd7f6459c08aafd5cf2fcb7902cc2868cb30:/lib/template/search-geocodejson.php diff --git a/lib/template/search-geocodejson.php b/lib/template/search-geocodejson.php index c046b4af..3e3a31c4 100644 --- a/lib/template/search-geocodejson.php +++ b/lib/template/search-geocodejson.php @@ -20,11 +20,13 @@ foreach ($aSearchResults as $iResNum => $aPointDetails) { $aPlace['properties']['geocoding']['label'] = $aPointDetails['langaddress']; - $aPlace['properties']['geocoding']['name'] = $aPointDetails['placename']; + if ($aPointDetails['placename'] !== null) { + $aPlace['properties']['geocoding']['name'] = $aPointDetails['placename']; + } if (isset($aPointDetails['address'])) { $aPointDetails['address']->addGeocodeJsonAddressParts( - $aPlace['properties']['geocoding'] + $aPlace['properties']['geocoding'] ); $aPlace['properties']['geocoding']['admin']