pull/807/merge
Varun Patil 2023-10-03 11:01:43 -07:00
commit 8f88c0f96e
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ class PlacesBackend extends Backend
$lang = Util::getUserLang();
foreach ($places as &$row) {
$row['osm_id'] = (int) $row['osm_id'];
$row['count'] = $marked ? 0 : (int) $row['count']; // the count is incorrect
$row['count'] = (int) $row['count'];
self::choosePlaceLang($row, $lang);
}