diff options
Diffstat (limited to 'timelinejs.module')
-rw-r--r-- | timelinejs.module | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/timelinejs.module b/timelinejs.module index 1bf5644..9fd4791 100644 --- a/timelinejs.module +++ b/timelinejs.module @@ -104,9 +104,7 @@ function timelinejs_fetch_items($nid, $format = 'json') { $nodes = timelinejs_load_events($nid); foreach ($nodes as $node) { - $content = node_load($node->entity_id); - $content->tag = taxonomy_term_load($content->field_categoria['und'][0]['tid']); - $items[] = $content; + $items[] = node_load($node->entity_id); } if (empty($items)) { |