Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
minor edit (I think it was intended date_end)  likely a copy/paste error :)
  • Loading branch information
01TylerWilson committed Mar 23, 2015
1 parent 05aca3b commit 97618b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function actionJsoncalendar($start=NULL,$end=NULL,$_=NULL){
$Event->id = $time->id;
$Event->title = $time->categoryAsString;
$Event->start = date('Y-m-d\TH:i:s\Z',strtotime($time->date_start.' '.$time->time_start));
$Event->end = date('Y-m-d\TH:i:s\Z',strtotime($time->date_start.' '.$time->time_end));
$Event->end = date('Y-m-d\TH:i:s\Z',strtotime($time->date_end.' '.$time->time_end));
$events[] = $Event;
}

Expand Down

0 comments on commit 97618b2

Please sign in to comment.