From ce95c55d656a06272177d2c41410322bf3a14817 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Mon, 18 Sep 2017 23:06:30 +0200 Subject: [PATCH] fix display of nearpoint in debug view --- lib/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lib.php b/lib/lib.php index 8f353a4d..a5439ef2 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -545,8 +545,8 @@ function _debugDumpGroupedSearches($aData, $aTokens) echo "".$aRow['sPostcode'].""; echo "".$aRow['sHouseNumber'].""; - echo "".$aRow['fLat'].""; - echo "".$aRow['fLon'].""; + echo "".$aRow['oNear']->lat().""; + echo "".$aRow['oNear']->lon().""; echo "".$aRow['fRadius'].""; echo ""; -- 2.39.5