Repeating events not showing
I've something in my code that is not allowing repeating events to show when I want to show a single day's worth of events.
Here is my code:
<?php
if ($calkey == "month") {
$epcListMouseover=1;
$LIST=1;
$listMonth = 1;
} elseif ($calkey == "week") {
$epcListMouseover=1;
$LIST=1;
$listWeeks=1;
} else {
$epcListMouseover=1;
$LIST=1;
$noOld = 1;
$listDays = 2;
}
$DF = "D - M d";
$template="mylist.php";
require ("esc/calendar.php");
unset($calkey);
?>
If I set $listDays=1, repeating events do not show for that day. If I set $listDays=2, they show. I tried this in demo.php with the same results. If this action is by design, OK. I'm just verifying that I'm calling Brian's functions correctly. I could not find anything specific in the Instructions or forum during my brief search for an answer.
You can view the test site at http://www.brunswickumc.com/events.php
Second item........the above code will only show me 6 days of events when "week" is chosen. Anybody see where I messed up?
|