fixed typo

This commit is contained in:
gemo1011 2018-06-14 15:06:47 +02:00
parent 41249377d2
commit 07eb108a6d

View File

@ -558,7 +558,7 @@ class PlaceLookup
if ($fLonReverse != null && $fLatReverse != null) {
$sFrom = ' from (SELECT * , ST_ClosestPoint(geometry, ST_SetSRID(ST_Point('.$fLatReverse.','.$fLonReverse.'),4326)) AS closest_point';
} else {
$sFrom = $sFrom = ' from placex where place_id = '.$iPlaceID;
$sFrom = ' from placex where place_id = '.$iPlaceID;
}
$sFrom .= ' from placex where place_id = '.$iPlaceID.') as plx';
if ($this->fPolygonSimplificationThreshold > 0) {