X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/8fd7d319b7ef6ee4d4f8cf3b61eb47903e7fb1eb..21c590416854b1245866b96772fde61050c0e01a:/lib/template/address-xml.php
diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php
index 0747844a..39d9a147 100644
--- a/lib/template/address-xml.php
+++ b/lib/template/address-xml.php
@@ -22,13 +22,15 @@
{
echo "".htmlspecialchars($aPlace['langaddress'])."";
- if ($bShowAddressDetails) {
+ if (isset($aPlace['aAddress']))
+ {
echo "";
foreach($aPlace['aAddress'] as $sKey => $sValue)
{
@@ -39,6 +41,28 @@
}
echo "";
}
+
+ if (isset($aPlace['sExtraTags']))
+ {
+ echo "";
+ foreach ($aPlace['sExtraTags'] as $sKey => $sValue)
+ {
+ echo '';
+ }
+ echo "";
+ }
+
+ if (isset($aPlace['sNameDetails']))
+ {
+ echo "";
+ foreach ($aPlace['sNameDetails'] as $sKey => $sValue)
+ {
+ echo '';
+ echo htmlspecialchars($sValue);
+ echo "";
+ }
+ echo "";
+ }
}
echo "";