]> git.openstreetmap.org Git - nominatim.git/commitdiff
use correct source for radius column in debug view
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 4 Oct 2017 18:14:35 +0000 (20:14 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 4 Oct 2017 18:14:35 +0000 (20:14 +0200)
lib/lib.php

index fb89c48bfe433d12ab7f3db936dee15758927ace..48ed0ffb416dea16e53dba02b8e56a6133e50bd0 100644 (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>";
         }