diff --git a/mod/events.php b/mod/events.php index d280bc1edc..da076313ad 100644 --- a/mod/events.php +++ b/mod/events.php @@ -120,7 +120,23 @@ function events_content(&$a) { if(! $m) $m = intval($thismonth); - + $nextyear = $y; + $nextmonth = $m + 1; + if($nextmonth > 12) { + $nextmonth = 1; + $nextyear ++; + } + + $prevyear = $y; + if($m > 1) + $prevmonth = $m - 1; + else { + $prevmonth = 12; + $prevyear --; + } + + + $o .= '' . t('<< Previous') . ' | ' . t('Next >>') . ''; $o .= cal($y,$m,false, ' eventcal'); $dim = get_dim($y,$m);