use correct source for radius column in debug view

This commit is contained in:
Sarah Hoffmann 2017-10-04 20:14:35 +02:00
parent 89c576fbe1
commit 1220ff5da6

View File

@ -548,10 +548,10 @@ function _debugDumpGroupedSearches($aData, $aTokens)
if ($aRow['oNear']) {
echo "<td>".$aRow['oNear']->lat()."</td>";
echo "<td>".$aRow['oNear']->lon()."</td>";
echo "<td>".$aRow['oNear']->radius()."</td>";
} else {
echo "<td></td><td></td>";
echo "<td></td><td></td><td></td>";
}
echo "<td>".$aRow['fRadius']."</td>";
echo "</tr>";
}