]> git.openstreetmap.org Git - nominatim.git/blobdiff - website/hierarchy.php
Merge pull request #522 from mtmail/PSR2-arrays
[nominatim.git] / website / hierarchy.php
index 7459b483a81bbe2a910ff28adb639630edade8ed..1646c4e008c0352598bd778893c16b7512552367 100755 (executable)
@@ -62,10 +62,12 @@ if (!sizeof($aPlaceAddress)) userError("Unknown place id.");
 $aBreadcrums = array();
 foreach ($aPlaceAddress as $i => $aPlace) {
     if (!$aPlace['place_id']) continue;
-    $aBreadcrums[] = array('placeId'   => $aPlace['place_id'],
-                           'osmType'   => $aPlace['osm_type'],
-                           'osmId'     => $aPlace['osm_id'],
-                           'localName' => $aPlace['localname']);
+    $aBreadcrums[] = array(
+                      'placeId'   => $aPlace['place_id'],
+                      'osmType'   => $aPlace['osm_type'],
+                      'osmId'     => $aPlace['osm_id'],
+                      'localName' => $aPlace['localname']
+                     );
 
     if ($sOutputFormat == 'html') {
         $sPlaceUrl = 'hierarchy.php?place_id='.$aPlace['place_id'];