Remove references to zoom factor for places in Wikidata fetcher

This commit is contained in:
Joshua Ramon Enslin 2024-09-25 15:42:59 +02:00
parent dea09b17cd
commit c650e57eda
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -1316,7 +1316,7 @@ final class NodaWikidataFetcher {
if (!empty($latitude_wd) and !empty($longitude_wd)) {
$updateStmt = $this->_mysqli_noda->do_prepare("UPDATE `orte`
SET `ort_nord_sued` = ?, `ort_west_ost` = ?, ort_zoom = '9'
SET `ort_nord_sued` = ?, `ort_west_ost` = ?
WHERE `ort_id` = ?");
$updateStmt->bind_param("ddi", $latitude_wd, $longitude_wd, $onum);
$updateStmt->execute();