mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 21:54:10 +03:00
use place_id instead of parent_place_id for excluded place_ids in interpolation lines query
This commit is contained in:
parent
2156fb1ad7
commit
98e5ba6b61
@ -1481,7 +1481,7 @@
|
||||
|
||||
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";
|
||||
if (CONST_Debug) var_dump($sSQL);
|
||||
|
Loading…
Reference in New Issue
Block a user