]> git.openstreetmap.org Git - nominatim.git/commitdiff
wrong variable name in json output
authorBrian Quinion <openstreetmap@brian.quinion.co.uk>
Thu, 20 Dec 2012 01:28:10 +0000 (01:28 +0000)
committerBrian Quinion <openstreetmap@brian.quinion.co.uk>
Thu, 20 Dec 2012 01:28:10 +0000 (01:28 +0000)
lib/template/search-json.php
lib/template/search-jsonv2.php

index 4b3b279d77362c2b9dec8d4ff4a6d411587f82bc..542e37afdc39b6d9a54b32239e0064b47b9c6d03 100644 (file)
                        $aPlace['address'] = $aPointDetails['address'];
                 }
 
-                if (isset($aResult['asgeojson']))
+                if (isset($aPointDetails['asgeojson']))
                 {
-                        $aPlace['geojson'] = json_decode($aResult['asgeojson']);
+                        $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
                 }
 
-                if (isset($aResult['assvg']))
+                if (isset($aPointDetails['assvg']))
                 {
-                        $aPlace['svg'] = $aResult['assvg'];
+                        $aPlace['svg'] = $aPointDetails['assvg'];
                 }
 
-                if (isset($aResult['astext']))
+                if (isset($aPointDetails['astext']))
                 {
-                        $aPlace['geotext'] = $aResult['astext'];
+                        $aPlace['geotext'] = $aPointDetails['astext'];
                 }
 
-               if (isset($aResult['askml']))
+               if (isset($aPointDetails['askml']))
                {
-                       $aPlace['geokml'] = $aResult['askml'];
+                       $aPlace['geokml'] = $aPointDetails['askml'];
                }
 
                $aFilteredPlaces[] = $aPlace;
index e1552a155ad53ec489791c78a9daa2927820be62..1c2a04dd84028df86bfa3126ef3b2d647a7863a8 100644 (file)
                        $aPlace['address'] = $aPointDetails['address'];
                 }
 
-                if (isset($aResult['asgeojson']))
+                if (isset($aPointDetails['asgeojson']))
                 {
-                       $aPlace['geojson'] = json_decode($aResult['asgeojson']);
+                       $aPlace['geojson'] = json_decode($aPointDetails['asgeojson']);
                 }
 
-                if (isset($aResult['assvg']))
+                if (isset($aPointDetails['assvg']))
                 {
-                       $aPlace['svg'] = $aResult['assvg'];
+                       $aPlace['svg'] = $aPointDetails['assvg'];
                 }
 
-                if (isset($aResult['astext']))
+                if (isset($aPointDetails['astext']))
                 {
-                        $aPlace['geotext'] = $aResult['astext'];
+                        $aPlace['geotext'] = $aPointDetails['astext'];
                 }
 
-                if (isset($aResult['askml']))
+                if (isset($aPointDetails['askml']))
                 {
-                        $aPlace['geokml'] = $aResult['askml'];
+                        $aPlace['geokml'] = $aPointDetails['askml'];
                 }
 
                $aFilteredPlaces[] = $aPlace;