diff options
-rw-r--r-- | timelinejs.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/timelinejs.module b/timelinejs.module index 9f60123..9fd4791 100644 --- a/timelinejs.module +++ b/timelinejs.module @@ -121,10 +121,10 @@ function timelinejs_fetch_items($nid, $format = 'json') { $output[] = theme('timelinejs_'. $format .'_event', array('event' => $event)); if ($format == 'json') { - $events = implode(',', $output); + $events = implode(',', $output); } else { - $events = implode($output); + $events = implode($output); } } |