X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/bffbe68ec3ad93aa6188083441677ab0fdd54659..1e40d65aa93e011815d07a406bcc46448512d7e3:/lib-php/admin/export.php diff --git a/lib-php/admin/export.php b/lib-php/admin/export.php index 6d9819d8..9f205de7 100644 --- a/lib-php/admin/export.php +++ b/lib-php/admin/export.php @@ -146,7 +146,6 @@ $oResults = $oDB->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';