From: Sarah Hoffmann Date: Wed, 2 Mar 2016 20:36:34 +0000 (+0100) Subject: Merge pull request #385 from mtmail/query-lastupdated-only-for-html-output X-Git-Tag: v3.0.0~202 X-Git-Url: https://git.openstreetmap.org/nominatim.git/commitdiff_plain/df9850f5ca396fbd31afe242ae421435fe49bdbc?hp=8e2b5d7ce3163bf3029be4d519fb978b68ca3b52 Merge pull request #385 from mtmail/query-lastupdated-only-for-html-output query the last updated timestamp only if output format is HTML --- 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']); } }