diff --git a/background_scripts/report_schedule_manager.php b/background_scripts/report_schedule_manager.php index 8da1654317..73da2015f7 100644 --- a/background_scripts/report_schedule_manager.php +++ b/background_scripts/report_schedule_manager.php @@ -207,12 +207,12 @@ function getActiveFrequencies($verbose = false) $day_of_month == 3 && in_array($month_index, $semi_annual_start_months) ) { - $activeFrequencies[] = 'Semi-annual'; + $activeFrequencies[] = 'Semi-annually'; } // Annually (January 3rd) if ($month_index == 1 && $day_of_month == 3) { - $activeFrequencies[] = 'Annual'; + $activeFrequencies[] = 'Annually'; } return $activeFrequencies;