X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/7239687e5b7fab3c48a567cfee811fc8e9d1f2e8..921cc233890705d6a916fa415b51fdd88fa8fe11:/lib/template/search-xml.php?ds=inline diff --git a/lib/template/search-xml.php b/lib/template/search-xml.php index 6e48be4c..aa029d2b 100644 --- a/lib/template/search-xml.php +++ b/lib/template/search-xml.php @@ -1,88 +1,123 @@ -\n"; - - echo "\n"; - - foreach($aSearchResults as $iResNum => $aResult) - { - echo ""; - foreach($aResult['address'] as $sKey => $sValue) - { - $sKey = str_replace(' ','_',$sKey); - echo "<$sKey>"; - echo htmlspecialchars($sValue); - echo ""; - } - - echo ""; - } - else - { - echo "/>"; - } - } - - echo ""; +\n"; + + echo "\n"; + + foreach($aSearchResults as $iResNum => $aResult) + { + echo ""; + } + + if (isset($aResult['askml'])) + { + echo "\n"; + echo $aResult['askml']; + echo ""; + } + + if (isset($aResult['address'])) + { + echo "\n"; + foreach($aResult['address'] as $sKey => $sValue) + { + $sKey = str_replace(' ','_',$sKey); + echo "<$sKey>"; + echo htmlspecialchars($sValue); + echo ""; + } + } + + if (isset($aResult['address']) || isset($aResult['askml'])) + { + echo ""; + } + else + { + echo "/>"; + } + } + + echo "";