From 3abbeb5f081c648a6f2fe0213663627ad6b37198 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 6 Feb 2012 22:26:08 +0000 Subject: [PATCH] don't print address details if they are not requested --- lib/template/address-xml.php | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) 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 ""; -- 2.39.5