X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/27af9b102c2d6167b9025d594f8cb75e4dd76a03..8b0b9db31e6b1cc8a8b046dace81d6a3799e8f67:/lib-php/admin/export.php diff --git a/lib-php/admin/export.php b/lib-php/admin/export.php index 6d9819d8..887b4beb 100644 --- a/lib-php/admin/export.php +++ b/lib-php/admin/export.php @@ -1,4 +1,12 @@ getQueryStatement($sPlacexSQL); $fOutstream = fopen('php://output', 'w'); while ($aRow = $oResults->fetch()) { - //var_dump($aRow); $iPlaceID = $aRow['place_id']; $sSQL = "select rank_address,get_name_by_language(name,$sLanguagePrefArraySQL) as localname from get_addressdata(:place_id, -1)"; $sSQL .= ' WHERE isaddress';