summaryrefslogtreecommitdiffstats
path: root/modules-available/locations/inc/autolocation.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locations/inc/autolocation.inc.php')
-rw-r--r--modules-available/locations/inc/autolocation.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/locations/inc/autolocation.inc.php b/modules-available/locations/inc/autolocation.inc.php
index 82c61251..f77cf714 100644
--- a/modules-available/locations/inc/autolocation.inc.php
+++ b/modules-available/locations/inc/autolocation.inc.php
@@ -22,7 +22,7 @@ class AutoLocation
}
$updates = array();
$nulls = array();
- while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
+ foreach ($res as $row) {
$loc = Location::mapIpToLocation($row['clientip']);
if ($loc === false) {
$nulls[] = $row['machineuuid'];