use place_id instead of parent_place_id for excluded place_ids in interpolation lines query

This commit is contained in:
markigail
2016-05-19 21:12:38 +02:00
committed by Sarah Hoffmann
parent 2156fb1ad7
commit 98e5ba6b61

View File

@@ -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);