@@ -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.
';
}
}