X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8a615ad96996fb685bf6a45317450ae891bda459..d3f7465ccad9cce6c84f0b089282c5ece550c5ed:/lib/template/address-xml.php 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);