In the Calendar view the month drop down links do not work and lead to a 404 error. This can be fixed by changing the &
to ?
in line 8 of datepicker.php (in the views folder) like this:
$link .= '&eventDisplay=month&eventDate=';
should be changed to this:
$link .= '?eventDisplay=month&eventDate=';