X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/414e6f089fc361ac22e28227be2d34a256226505..30ead191463103fb4faceb52fc6fb4867bd41e18:/website/polygons.php diff --git a/website/polygons.php b/website/polygons.php index e5d459f3..29fc5c27 100644 --- a/website/polygons.php +++ b/website/polygons.php @@ -12,9 +12,10 @@ $iDays = $oParams->getInt('days', false); $bReduced = $oParams->getBool('reduced', false); $sClass = $oParams->getString('class', false); -$oDB =& getDB(); +$oDB = new Nominatim\DB(); +$oDB->connect(); -$iTotalBroken = (int) chksql($oDB->getOne('select count(*) from import_polygon_error')); +$iTotalBroken = (int) $oDB->getOne('select count(*) from import_polygon_error'); $aPolygons = array(); while ($iTotalBroken && empty($aPolygons)) { @@ -36,7 +37,7 @@ while ($iTotalBroken && empty($aPolygons)) { } $sSQL .= ' order by updated desc limit 1000'; - $aPolygons = chksql($oDB->getAll($sSQL)); + $aPolygons = $oDB->getAll($sSQL); } if (CONST_Debug) { @@ -119,7 +120,7 @@ foreach ($aPolygons as $aRow) { } break; case 'id': - echo ''.osmLink($aRow).''; + echo ''.osmLink(array('osm_type' => $aRow['type'], 'osm_id' => $aRow['id'])).''; break; default: echo ''.($sVal?$sVal:' ').'';