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