Zeile 130 | Zeile 130 |
---|
$link_to_day = false; // Any events on this specific day?
|
$link_to_day = false; // Any events on this specific day?
|
if(@count($events_cache["$day-$calendar_month-$calendar_year"]) > 0)
| if(!empty($events_cache["$day-$calendar_month-$calendar_year"]))
|
{ $link_to_day = true; }
| { $link_to_day = true; }
|
Zeile 514 | Zeile 514 |
---|
} else if(!$first) {
|
} else if(!$first) {
|
if(!isset($events_cache[$day_date]))
| if(!isset($events_cache[$day_date]) || !is_array($events_cache[$day_date]))
|
{ $events_cache[$day_date] = array(); }
| { $events_cache[$day_date] = array(); }
|
Zeile 549 | Zeile 549 |
---|
global $db;
$year = my_date("Y");
|
global $db;
$year = my_date("Y");
|
| $feb_fix = 0;
|
if(!is_array($months)) {
| if(!is_array($months)) {
|