X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c8359181237a3b145ac48b5e58098b36674cd89f..a9357b4dce19f21885992820235ec999a818679d:/lib/template/address-xml.php?ds=sidebyside diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index 6183b284..a17da738 100644 --- a/lib/template/address-xml.php +++ b/lib/template/address-xml.php @@ -11,7 +11,7 @@ echo " attribution='Data © OpenStreetMap contributors, ODbL 1.0. http://www.ope echo " querystring='".htmlspecialchars($_SERVER['QUERY_STRING'], ENT_QUOTES)."'"; echo ">\n"; -if (!sizeof($aPlace)) { +if (empty($aPlace)) { if (isset($sError)) echo "$sError"; else echo 'Unable to geocode'; @@ -48,9 +48,9 @@ if (!sizeof($aPlace)) { } echo '>'.htmlspecialchars($aPlace['langaddress']).''; - if (isset($aPlace['aAddress'])) { + if (isset($aPlace['address'])) { echo ''; - foreach ($aPlace['aAddress'] as $sKey => $sValue) { + foreach ($aPlace['address']->getAddressNames() as $sKey => $sValue) { $sKey = str_replace(' ', '_', $sKey); echo "<$sKey>"; echo htmlspecialchars($sValue);