X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2eccb0e69dd4e443ec534fb9baa374b76ee7e57f..3abbeb5f081c648a6f2fe0213663627ad6b37198:/lib/template/address-xml.php diff --git a/lib/template/address-xml.php b/lib/template/address-xml.php index d6061e3d..185601ad 100644 --- a/lib/template/address-xml.php +++ b/lib/template/address-xml.php @@ -29,15 +29,17 @@ if (isset($aPlace['lon'])) echo ' lon="'.htmlspecialchars($aPlace['lon']).'"'; echo ">".htmlspecialchars($aPlace['langaddress']).""; - echo ""; - foreach($aAddress as $sKey => $sValue) - { - $sKey = str_replace(' ','_',$sKey); - echo "<$sKey>"; - echo htmlspecialchars($sValue); - echo ""; - } - echo ""; + if ($bShowAddressDetails) { + echo ""; + foreach($aAddress as $sKey => $sValue) + { + $sKey = str_replace(' ','_',$sKey); + echo "<$sKey>"; + echo htmlspecialchars($sValue); + echo ""; + } + echo ""; + } } echo "";