X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/97bc185152af04b2f7baaf839e1b0eb0ea789d46..c4e72e6ca9a72a9e151ca189cb8febacae36ecfa:/lib/SearchContext.php diff --git a/lib/SearchContext.php b/lib/SearchContext.php index 134b138f..3e722d87 100644 --- a/lib/SearchContext.php +++ b/lib/SearchContext.php @@ -146,11 +146,11 @@ class SearchContext $this->sqlViewboxCentre .= ")'::geometry,4326)"; $sSQL = 'ST_BUFFER('.$this->sqlViewboxCentre.','.($fRouteWidth/69).')'; - $sGeom = chksql($oDB->getOne("select ".$sSQL), "Could not get small viewbox"); + $sGeom = chksql($oDB->getOne('select '.$sSQL), 'Could not get small viewbox'); $this->sqlViewboxSmall = "'".$sGeom."'::geometry"; $sSQL = 'ST_BUFFER('.$this->sqlViewboxCentre.','.($fRouteWidth/30).')'; - $sGeom = chksql($oDB->getOne("select ".$sSQL), "Could not get large viewbox"); + $sGeom = chksql($oDB->getOne('select '.$sSQL), 'Could not get large viewbox'); $this->sqlViewboxLarge = "'".$sGeom."'::geometry"; }