From: Sarah Hoffmann Date: Wed, 4 Oct 2017 18:14:35 +0000 (+0200) Subject: use correct source for radius column in debug view X-Git-Tag: v3.1.0~58 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/1220ff5da6276ae73ab1bc63a16459b3b30da0ff use correct source for radius column in debug view --- diff --git a/lib/lib.php b/lib/lib.php index fb89c48b..48ed0ffb 100644 --- a/lib/lib.php +++ b/lib/lib.php @@ -548,10 +548,10 @@ function _debugDumpGroupedSearches($aData, $aTokens) if ($aRow['oNear']) { echo "".$aRow['oNear']->lat().""; echo "".$aRow['oNear']->lon().""; + echo "".$aRow['oNear']->radius().""; } else { - echo ""; + echo ""; } - echo "".$aRow['fRadius'].""; echo ""; }