Skip to content

Commit

Permalink
Merge pull request #20 from mattclegg/patch-1
Browse files Browse the repository at this point in the history
MINOR case sensitive comparison
unclecheese committed Aug 15, 2013
2 parents f00d0c5 + 7ac5345 commit 7fa65f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/CalendarEvent.php
Original file line number Diff line number Diff line change
@@ -181,7 +181,7 @@ public function OtherDates() {
return DataList::create($this->data()->getDateTimeClass())
->filter(array(
"EventID" => $this->ID,
"StartDate:ExactMatch:Not" => $date
"StartDate:ExactMatch:not" => $date
))
->sort("StartDate ASC")
->limit($cal->OtherDatesCount);

0 comments on commit 7fa65f3

Please sign in to comment.