From: marc tobias Date: Tue, 1 Mar 2016 23:53:56 +0000 (+0100) Subject: corrected layout of keywords on HTML details page X-Git-Tag: v3.0.0~203^2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/edaa1f7fcd220124c7875f81b6d774244c6d2d69?ds=inline;hp=-c corrected layout of keywords on HTML details page --- edaa1f7fcd220124c7875f81b6d774244c6d2d69 diff --git a/lib/template/details-html.php b/lib/template/details-html.php index 404450c0..3e9e39d7 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -121,7 +121,7 @@ echo $keyword_token; if (isset($word_id)) { - echo '('.$word_id.')'; + echo 'word id: '.$word_id; } echo "\n"; } @@ -222,7 +222,7 @@ headline('Name Keywords'); foreach($aPlaceSearchNameKeywords as $aRow) { - _one_keyword_row($aRow['word_token']); + _one_keyword_row($aRow['word_token'], $aRow['word_id']); } }