Fixed month view not displaying a full 42 days

This commit is contained in:
Albert Santoni 2015-04-16 16:30:12 -04:00
parent d20c8e8df4
commit acbaac0bc5
2 changed files with 27 additions and 9 deletions

View file

@ -151,7 +151,7 @@ class ScheduleController extends Zend_Controller_Action
} else if ($calendar_interval == "agendaWeek") {
list($start, $end) = Application_Model_Show::getStartEndCurrentWeekView();
} else if ($calendar_interval == "month") {
list($start, $end) = Application_Model_Show::getStartEndCurrentMonthView();
list($start, $end) = Application_Model_Show::getStartEndCurrentMonthPlusView();
} else {
Logging::error("Invalid Calendar Interval '$calendar_interval'");
}