X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/1787892d32351988231a60b71900c6a623609c54..743ec4346096fa6484142d6fe3d4386dd1545db9:/lib/template/details-html.php diff --git a/lib/template/details-html.php b/lib/template/details-html.php index ef7d9248..4d5ccb87 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -97,7 +97,10 @@
-

+

+ + +

@@ -111,7 +114,7 @@ kv('Name' , hash_to_subtable($aPointDetails['aNames']) ); kv('Type' , $aPointDetails['class'].':'.$aPointDetails['type'] ); - kv('Last Updated' , $aPointDetails['indexed_date'] ); + kv('Last Updated' , (new DateTime('@'.$aPointDetails['indexed_epoch']))->format(DateTime::RFC822) ); kv('Admin Level' , $aPointDetails['admin_level'] ); kv('Rank' , $aPointDetails['rank_search_label'] ); if ($aPointDetails['calculated_importance']) { @@ -181,17 +184,14 @@ - if ($aPlaceSearchNameKeywords) + if ($bIncludeKeywords) { headline('Name Keywords'); foreach($aPlaceSearchNameKeywords as $aRow) { _one_keyword_row($aRow['word_token'], $aRow['word_id']); } - } - if ($aPlaceSearchAddressKeywords) - { headline('Address Keywords'); foreach($aPlaceSearchAddressKeywords as $aRow) { @@ -199,12 +199,12 @@ } } - if (!empty($aParentOfLines)) + if (!empty($aHierarchyLines)) { headline('Parent Of'); $aGroupedAddressLines = array(); - foreach($aParentOfLines as $aAddressLine) + foreach($aHierarchyLines as $aAddressLine) { if ($aAddressLine['type'] == 'yes') $sType = $aAddressLine['class']; else $sType = $aAddressLine['type']; @@ -213,17 +213,17 @@ $aGroupedAddressLines[$sType] = array(); $aGroupedAddressLines[$sType][] = $aAddressLine; } - foreach($aGroupedAddressLines as $sGroupHeading => $aParentOfLines) + foreach($aGroupedAddressLines as $sGroupHeading => $aHierarchyLines) { $sGroupHeading = ucwords($sGroupHeading); headline3($sGroupHeading); - foreach($aParentOfLines as $aAddressLine) + foreach($aHierarchyLines as $aAddressLine) { _one_row($aAddressLine); } } - if (count($aParentOfLines) >= 500) { + if (count($aHierarchyLines) >= 500) { echo '

There are more child objects which are not shown.

'; } }