diff options
Diffstat (limited to 'timelinejs_json_event.tpl.php')
-rw-r--r-- | timelinejs_json_event.tpl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/timelinejs_json_event.tpl.php b/timelinejs_json_event.tpl.php index 60b88c2..75ab055 100644 --- a/timelinejs_json_event.tpl.php +++ b/timelinejs_json_event.tpl.php @@ -2,8 +2,8 @@ "startDate":"<?php print strftime('%Y,%m,%d', strtotime($event->field_date['und'][0]['value'])); ?>", "headline":"<?php print $event->title; ?>", "text":"<?php print timelinejs_strip($event->body['und'][0]['value']); ?>", -<?php if (isset($event->tag) && $event->tag != FALSE) { ?> - "tag":"<?php print $event->tag->name; ?>", +<?php if (isset($event->field_tag) && isset($event->field_tag['und'][0]['value'])) { ?> + "tag":"<?php print $event->field_tag['und'][0]['value']; ?>", <?php } ?> "asset": { |