mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-25 18:48:15 +00:00
use place_id instead of parent_place_id for excluded place_ids in interpolation lines query
This commit is contained in:
committed by
Sarah Hoffmann
parent
2156fb1ad7
commit
98e5ba6b61
@@ -1481,7 +1481,7 @@
|
|||||||
|
|
||||||
if (sizeof($this->aExcludePlaceIDs))
|
if (sizeof($this->aExcludePlaceIDs))
|
||||||
{
|
{
|
||||||
$sSQL .= " and parent_place_id not in (".join(',', $this->aExcludePlaceIDs).")";
|
$sSQL .= " and place_id not in (".join(',', $this->aExcludePlaceIDs).")";
|
||||||
}
|
}
|
||||||
//$sSQL .= " limit $this->iLimit";
|
//$sSQL .= " limit $this->iLimit";
|
||||||
if (CONST_Debug) var_dump($sSQL);
|
if (CONST_Debug) var_dump($sSQL);
|
||||||
|
|||||||
Reference in New Issue
Block a user