Fixed body field in organization content type

This commit is contained in:
Manuel Cillero 2017-09-03 13:10:21 +02:00
parent 7d5864b347
commit f919b88f58
7 changed files with 25 additions and 31 deletions

View file

@ -179,15 +179,5 @@ function theme_stormorganization_view($node, $teaser = FALSE, $page = FALSE) {
);
}
/*
$node->content['body_field'] = array(
'#prefix' => '<div class="stormbody">',
'#suffix' => '</div>',
'#value' => theme('storm_view_item', t('Note'), $node->content['body']['#value']),
'#weight' => module_exists('content') ? content_extra_field_weight($node->type, 'body_field') : 0,
);
*/
unset($node->content['body']);
return $node;
}