diff --git a/lib/template/address-json.php b/lib/template/address-json.php
index 29e6e901..e08b8ac3 100644
--- a/lib/template/address-json.php
+++ b/lib/template/address-json.php
@@ -1,39 +1,39 @@
-\n";
-
- echo "\n";
-
- if (!sizeof($aPlace))
- {
- if ($sError)
- echo "$sError";
- else
- echo "Unable to geocode";
- }
- else
- {
- echo "".htmlspecialchars($aPlace['langaddress'])."";
-
- if ($bShowAddressDetails) {
- echo "";
- foreach($aAddress as $sKey => $sValue)
- {
- $sKey = str_replace(' ','_',$sKey);
- echo "<$sKey>";
- echo htmlspecialchars($sValue);
- echo "$sKey>";
- }
- echo "";
- }
- }
-
- echo "";
+\n";
+
+ echo "\n";
+
+ if (!sizeof($aPlace))
+ {
+ if ($sError)
+ echo "$sError";
+ else
+ echo "Unable to geocode";
+ }
+ else
+ {
+ echo "".htmlspecialchars($aPlace['langaddress'])."";
+
+ if ($bShowAddressDetails) {
+ echo "";
+ foreach($aAddress as $sKey => $sValue)
+ {
+ $sKey = str_replace(' ','_',$sKey);
+ echo "<$sKey>";
+ echo htmlspecialchars($sValue);
+ echo "$sKey>";
+ }
+ echo "";
+ }
+ }
+
+ echo "";
diff --git a/lib/template/search-json.php b/lib/template/search-json.php
index 8950f14c..7c695ea5 100644
--- a/lib/template/search-json.php
+++ b/lib/template/search-json.php
@@ -1,65 +1,65 @@
- $aPointDetails)
- {
- $aPlace = array(
- 'place_id'=>$aPointDetails['place_id'],
- 'licence'=>"Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.",
- );
-
- $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
- if ($sOSMType)
- {
- $aPlace['osm_type'] = $sOSMType;
- $aPlace['osm_id'] = $aPointDetails['osm_id'];
- }
-
- if (isset($aPointDetails['aBoundingBox']))
- {
- $aPlace['boundingbox'] = array(
- $aPointDetails['aBoundingBox'][0],
- $aPointDetails['aBoundingBox'][1],
- $aPointDetails['aBoundingBox'][2],
- $aPointDetails['aBoundingBox'][3]);
-
- if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
- {
- $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
- }
- }
-
- if (isset($aPointDetails['zoom']))
- {
- $aPlace['zoom'] = $aPointDetails['zoom'];
- }
-
- $aPlace['lat'] = $aPointDetails['lat'];
- $aPlace['lon'] = $aPointDetails['lon'];
- $aPlace['display_name'] = $aPointDetails['name'];
-
- $aPlace['class'] = $aPointDetails['class'];
- $aPlace['type'] = $aPointDetails['type'];
- if ($aPointDetails['icon'])
- {
- $aPlace['icon'] = $aPointDetails['icon'];
- }
-
- if (isset($aPointDetails['address']))
- {
- $aPlace['address'] = $aPointDetails['address'];
- }
-
- $aFilteredPlaces[] = $aPlace;
- }
-
- if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))
- {
- echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';
- }
- else
- {
- echo javascript_renderData($aFilteredPlaces);
- }
+ $aPointDetails)
+ {
+ $aPlace = array(
+ 'place_id'=>$aPointDetails['place_id'],
+ 'licence'=>"Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.",
+ );
+
+ $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
+ if ($sOSMType)
+ {
+ $aPlace['osm_type'] = $sOSMType;
+ $aPlace['osm_id'] = $aPointDetails['osm_id'];
+ }
+
+ if (isset($aPointDetails['aBoundingBox']))
+ {
+ $aPlace['boundingbox'] = array(
+ $aPointDetails['aBoundingBox'][0],
+ $aPointDetails['aBoundingBox'][1],
+ $aPointDetails['aBoundingBox'][2],
+ $aPointDetails['aBoundingBox'][3]);
+
+ if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
+ {
+ $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
+ }
+ }
+
+ if (isset($aPointDetails['zoom']))
+ {
+ $aPlace['zoom'] = $aPointDetails['zoom'];
+ }
+
+ $aPlace['lat'] = $aPointDetails['lat'];
+ $aPlace['lon'] = $aPointDetails['lon'];
+ $aPlace['display_name'] = $aPointDetails['name'];
+
+ $aPlace['class'] = $aPointDetails['class'];
+ $aPlace['type'] = $aPointDetails['type'];
+ if ($aPointDetails['icon'])
+ {
+ $aPlace['icon'] = $aPointDetails['icon'];
+ }
+
+ if (isset($aPointDetails['address']))
+ {
+ $aPlace['address'] = $aPointDetails['address'];
+ }
+
+ $aFilteredPlaces[] = $aPlace;
+ }
+
+ if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))
+ {
+ echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';
+ }
+ else
+ {
+ echo javascript_renderData($aFilteredPlaces);
+ }
diff --git a/lib/template/search-jsonv2.php b/lib/template/search-jsonv2.php
index 7dd4b334..5e52238b 100644
--- a/lib/template/search-jsonv2.php
+++ b/lib/template/search-jsonv2.php
@@ -1,65 +1,65 @@
- $aPointDetails)
- {
- $aPlace = array(
- 'place_id'=>$aPointDetails['place_id'],
- 'licence'=>"Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.",
- );
-
- $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
- if ($sOSMType)
- {
- $aPlace['osm_type'] = $sOSMType;
- $aPlace['osm_id'] = $aPointDetails['osm_id'];
- }
-
- if (isset($aPointDetails['aBoundingBox']))
- {
- $aPlace['boundingbox'] = array(
- $aPointDetails['aBoundingBox'][0],
- $aPointDetails['aBoundingBox'][1],
- $aPointDetails['aBoundingBox'][2],
- $aPointDetails['aBoundingBox'][3]);
-
- if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
- {
- $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
- }
- }
-
- if (isset($aPointDetails['zoom']))
- {
- $aPlace['zoom'] = $aPointDetails['zoom'];
- }
-
- $aPlace['lat'] = $aPointDetails['lat'];
- $aPlace['lon'] = $aPointDetails['lon'];
- $aPlace['display_name'] = $aPointDetails['name'];
-
- $aPlace['category'] = $aPointDetails['class'];
- $aPlace['type'] = $aPointDetails['type'];
- if ($aPointDetails['icon'])
- {
- $aPlace['icon'] = $aPointDetails['icon'];
- }
-
- if (isset($aPointDetails['address']))
- {
- $aPlace['address'] = $aPointDetails['address'];
- }
-
- $aFilteredPlaces[] = $aPlace;
- }
-
- if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))
- {
- echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';
- }
- else
- {
- echo javascript_renderData($aFilteredPlaces);
- }
+ $aPointDetails)
+ {
+ $aPlace = array(
+ 'place_id'=>$aPointDetails['place_id'],
+ 'licence'=>"Data Copyright OpenStreetMap Contributors, Some Rights Reserved. CC-BY-SA 2.0.",
+ );
+
+ $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
+ if ($sOSMType)
+ {
+ $aPlace['osm_type'] = $sOSMType;
+ $aPlace['osm_id'] = $aPointDetails['osm_id'];
+ }
+
+ if (isset($aPointDetails['aBoundingBox']))
+ {
+ $aPlace['boundingbox'] = array(
+ $aPointDetails['aBoundingBox'][0],
+ $aPointDetails['aBoundingBox'][1],
+ $aPointDetails['aBoundingBox'][2],
+ $aPointDetails['aBoundingBox'][3]);
+
+ if (isset($aPointDetails['aPolyPoints']) && $bShowPolygons)
+ {
+ $aPlace['polygonpoints'] = $aPointDetails['aPolyPoints'];
+ }
+ }
+
+ if (isset($aPointDetails['zoom']))
+ {
+ $aPlace['zoom'] = $aPointDetails['zoom'];
+ }
+
+ $aPlace['lat'] = $aPointDetails['lat'];
+ $aPlace['lon'] = $aPointDetails['lon'];
+ $aPlace['display_name'] = $aPointDetails['name'];
+
+ $aPlace['category'] = $aPointDetails['class'];
+ $aPlace['type'] = $aPointDetails['type'];
+ if ($aPointDetails['icon'])
+ {
+ $aPlace['icon'] = $aPointDetails['icon'];
+ }
+
+ if (isset($aPointDetails['address']))
+ {
+ $aPlace['address'] = $aPointDetails['address'];
+ }
+
+ $aFilteredPlaces[] = $aPlace;
+ }
+
+ if (isset($_GET['json_callback']) && preg_match('/^[-A-Za-z0-9:_.]+$/',$_GET['json_callback']))
+ {
+ echo $_GET['json_callback'].'('.javascript_renderData($aFilteredPlaces).')';
+ }
+ else
+ {
+ echo javascript_renderData($aFilteredPlaces);
+ }
diff --git a/lib/template/search-xml.php b/lib/template/search-xml.php
index 6e48be4c..6ceb53cd 100644
--- a/lib/template/search-xml.php
+++ b/lib/template/search-xml.php
@@ -1,88 +1,88 @@
-\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 "$sKey>";
- }
-
- echo "";
- }
- else
- {
- echo "/>";
- }
- }
-
- echo "";
+\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 "$sKey>";
+ }
+
+ echo "";
+ }
+ else
+ {
+ echo "/>";
+ }
+ }
+
+ echo "";