X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/effd8e12af440586594a18a04beb33abed260d15..908c66ca84d8f321911aa93d69a8f311ee8dd347:/website/deletable.php diff --git a/website/deletable.php b/website/deletable.php index 6d57262d..6e9178e0 100755 --- a/website/deletable.php +++ b/website/deletable.php @@ -1,23 +1,26 @@ 'name' as name, i.* from placex, import_polygon_delete i where placex.osm_id = i.osm_id and placex.osm_type = i.osm_type and placex.class = i.class and placex.type = i.type"; - $aPolygons = chksql($oDB->getAll($sSQL), - "Could not get list of deleted OSM elements."); +$oDB =& getDB(); + +$sSQL = 'select placex.place_id, country_code,'; +$sSQL .= " name->'name' as name, i.* from placex, import_polygon_delete i"; +$sSQL .= ' where placex.osm_id = i.osm_id and placex.osm_type = i.osm_type'; +$sSQL .= ' and placex.class = i.class and placex.type = i.type'; +$aPolygons = chksql($oDB->getAll($sSQL), 'Could not get list of deleted OSM elements.'); + +if (CONST_Debug) { + var_dump($aPolygons); + exit; +} - if (CONST_DEBUG) - { - var_dump($aPolygons); - exit; - } ?> @@ -68,34 +71,32 @@ table td {
".$sCol." | "; - } - echo ""; - foreach($aPolygons as $aRow) - { - echo "||
---|---|---|
'.osmLink($aRow).' | '; - break; - case 'place_id': - echo ''.detailsLink($aRow).' | '; - break; - default: - echo "".($sVal?$sVal:' ')." | "; - break; - } + +if (!$aPolygons) exit; +echo '
'.$sCol.' | '; +} +echo '||
'.osmLink($aRow).' | '; + break; + case 'place_id': + echo ''.detailsLink($aRow).' | '; + break; + default: + echo ''.($sVal?$sVal:' ').' | '; + break; } - echo "