]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge remote-tracking branch 'upstream/master'
authorSarah Hoffmann <lonvia@denofr.de>
Fri, 12 Jun 2015 21:54:08 +0000 (23:54 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Fri, 12 Jun 2015 21:54:08 +0000 (23:54 +0200)
lib/Geocode.php

index a932949d20934f39e14be9592cd3343eeef057aa..c1fae0bbec399305b1efcbccc02b41e3e9f43163 100644 (file)
                                                        $aPointPolygon['minlon'] = $aPointPolygon['minlon'] - $fRadius;
                                                        $aPointPolygon['maxlon'] = $aPointPolygon['maxlon'] + $fRadius;
                                                }
-                                               $aResult['aBoundingBox'] = array($aPointPolygon['minlat'],$aPointPolygon['maxlat'],$aPointPolygon['minlon'],$aPointPolygon['maxlon']);
+                                               $aResult['aBoundingBox'] = array((string)$aPointPolygon['minlat'],(string)$aPointPolygon['maxlat'],(string)$aPointPolygon['minlon'],(string)$aPointPolygon['maxlon']);
                                        }
                                }