From: Sarah Hoffmann Date: Mon, 6 Feb 2012 22:26:08 +0000 (+0000) Subject: don't print address details if they are not requested X-Git-Tag: v2.0.0~119 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/3abbeb5f081c648a6f2fe0213663627ad6b37198 don't print address details if they are not requested --- 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 "";