X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/c9d51fe7b8c915e898d95af57dc2c013b9cf84a0..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 "";