diff --git a/lib/template/details-html.php b/lib/template/details-html.php
index e536e202..b89bf747 100644
--- a/lib/template/details-html.php
+++ b/lib/template/details-html.php
@@ -108,6 +108,7 @@ foreach($aPolyPoints as $aPolyPoint)
echo '
Type: '.$aPointDetails['class'].':'.$aPointDetails['type'].'
';
echo ' Admin Level: '.$aPointDetails['admin_level'].'
';
echo ' Rank: '.$aPointDetails['rank_search_label'].'
';
+ if ($aPointDetails['importance']) echo ' Importance: '.$aPointDetails['importance'].'
';
echo ' Coverage: '.($aPointDetails['isarea']=='t'?'Polygon':'Point').'
';
$sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':'')));
if ($sOSMType) echo ' ';
diff --git a/website/details.php b/website/details.php
index 2e5a6c9f..a4a2ae5e 100755
--- a/website/details.php
+++ b/website/details.php
@@ -43,7 +43,7 @@
//$oDB->query($sSQL);
// Get the details for this point
- $sSQL = "select place_id, osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, ";
+ $sSQL = "select place_id, osm_type, osm_id, class, type, name, admin_level, housenumber, street, isin, postcode, country_code, importance,";
$sSQL .= " parent_place_id, rank_address, rank_search, get_searchrank_label(rank_search) as rank_search_label, get_name_by_language(name,$sLanguagePrefArraySQL) as localname, ";
$sSQL .= " ST_GeometryType(geometry) in ('ST_Polygon','ST_MultiPolygon') as isarea,ST_GeometryType(geometry) as geotype, ST_Y(ST_Centroid(geometry)) as lat,ST_X(ST_Centroid(geometry)) as lon ";
$sSQL .= " from placex where place_id = $iPlaceID";