X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/75f951d254127d8857b6ad95cac241917f88e542..626e3238f27d972614ad3c0e978605facf0f9bd2:/website/polygons.php diff --git a/website/polygons.php b/website/polygons.php index 00e043bd..a2264b18 100644 --- a/website/polygons.php +++ b/website/polygons.php @@ -15,7 +15,7 @@ $sClass = $oParams->getString('class', false); $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)) { @@ -37,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) {