diff options
author | Silvio <silvio@socioambiental.org> | 2013-06-25 13:16:17 -0300 |
---|---|---|
committer | Silvio <silvio@socioambiental.org> | 2013-06-25 13:16:17 -0300 |
commit | 92fdd4b5361b1d25be91994afa499fbdc5d10110 (patch) | |
tree | 9e2e8cf8210fbd8654b1149b9901eae9df660093 | |
parent | 6b9a7fa66dfbc32c8781908a76c5a71be6c07eda (diff) | |
download | timelinejs-92fdd4b5361b1d25be91994afa499fbdc5d10110.tar.gz timelinejs-92fdd4b5361b1d25be91994afa499fbdc5d10110.tar.bz2 |
Coding style
-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); } } |