Event Manager startup at current month
The Event Manager by default opens with the previous, current and next months events displayed. If you would like to have it open displaying the current month and the next two months (no previous month), add the code below to the calendar/events/headerCustom.inc.php file:
<?php
// THE CODE BELOW WHEN INSERTED INTO THE
// calendar/events/headerCustom.inc.php FILE WILL
// DISPLAY THE CALENDAR STARTING AT THE
// CURRENT MONTH AND NOT THE PREVIOUS MONTH
if (!$_REQUEST['mo'] && !$mo) {
$mo = date("m");
$yr = date("Y");
$mo++;
if ($mo>12) {
$mo=1;
$yr++;
}
$_REQUEST['mo'] = $mo;
$_REQUEST['yr'] = $yr;
}
?>