X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/eb0b3bfa4cd74ee9e425c54868a30d8859e694cd..8f23ba076bfedc2dc581789fc2fdc266932dc100:/website/deletable.php?ds=inline diff --git a/website/deletable.php b/website/deletable.php index 1866f890..6e9178e0 100755 --- a/website/deletable.php +++ b/website/deletable.php @@ -1,21 +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; - } ?> @@ -66,30 +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 "