Remove duplicate filter

This commit is contained in:
Steffen Lange 2018-05-19 20:10:24 +00:00 committed by GitHub
parent af8ee03024
commit 3764edbcbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ printline(date('d.m.Y', strtotime($today)));
foreach ($davevents as $davevent) {
$cal = new ICal();
$cal->initString($davevent['data']);
$calevents = $cal->eventsFromRange("${today}T000000Z", "${today}T235959Z");
$calevents = $cal->events();
foreach ($calevents as $calevent) {
printseparator();
printline(date('H:i', strtotime($calevent->dtstart)) . '-' . date('H:i', strtotime($calevent->dtend)) . ' ' . substr(umlauts($calevent->location), 0, LINELENGTH - 12));