X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/6fc32d9645f98ec39c8773d6bf01cc2f6d4969de..5464dec0570c2451d8607bc739c6f2b6f298bb75:/website/deletable.php diff --git a/website/deletable.php b/website/deletable.php index 3283bb83..c55cb20f 100755 --- a/website/deletable.php +++ b/website/deletable.php @@ -2,20 +2,22 @@ require_once(dirname(dirname(__FILE__)).'/settings/settings.php'); require_once(CONST_BasePath.'/lib/init-website.php'); require_once(CONST_BasePath.'/lib/log.php'); + require_once(CONST_BasePath.'/lib/output.php'); + ini_set('memory_limit', '200M'); $sOutputFormat = 'html'; - ini_set('memory_limit', '200M'); $oDB =& getDB(); $sSQL = "select placex.place_id, calculated_country_code as country_code, name->'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 = $oDB->getAll($sSQL); - if (PEAR::isError($aPolygons)) + $aPolygons = chksql($oDB->getAll($sSQL), + "Could not get list of deleted OSM elements."); + + if (CONST_DEBUG) { - failInternalError("Could not get list of deleted OSM elements.", $sSQL, $aPolygons); + var_dump($aPolygons); + exit; } - -//var_dump($aPolygons); ?> @@ -66,6 +68,7 @@ table td { "; //var_dump($aPolygons[0]); foreach($aPolygons[0] as $sCol => $sVal) @@ -81,11 +84,10 @@ table td { switch($sCol) { case 'osm_id': - $sOSMType = ($aRow['osm_type'] == 'N'?'node':($aRow['osm_type'] == 'W'?'way':($aRow['osm_type'] == 'R'?'relation':''))); - echo ''; + echo ''; break; case 'place_id': - echo ''; + echo ''; break; default: echo "";
'.$sVal.''.osmLink($aRow).''.$sVal.''.detailsLink($aRow).'".($sVal?$sVal:' ')."