Remove "Calculated area" from area details.

This commit is contained in:
Michael Stenta 2020-02-08 12:41:46 -05:00
parent cd87da08f4
commit c2da059acf
1 changed files with 0 additions and 10 deletions

View File

@ -25,16 +25,6 @@ function farm_area_farm_area_details($id) {
// Start a render array.
$output = array();
// Display the calculated area (formatted).
$calculated_area = farm_area_calculate_area($id, TRUE);
if (!empty($calculated_area)) {
$output['calculated_area'] = array(
'#type' => 'markup',
'#markup' => '<p><small>Calculated area: ' . $calculated_area . '</small></p>',
'#weight' => -100,
);
}
// Load and display the area description.
$area = taxonomy_term_load($id);
if (!empty($area->description)) {