You are here

function template_preprocess_node_field_views_node_field in Node Field 7.2

Preprocesses variables for node_field_views_node_field theme.

File

./node_field.module, line 318
This module provide ability to add extra fields to any single node.

Code

function template_preprocess_node_field_views_node_field(&$vars) {
  foreach ($vars['node_fields'] as $key => $node_field) {
    $vars['node_fields'][$key]['title'] = check_plain($node_field['title']);
  }
}