summaryrefslogtreecommitdiff
path: root/calendar.php
diff options
context:
space:
mode:
Diffstat (limited to 'calendar.php')
-rw-r--r--calendar.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/calendar.php b/calendar.php
index f300eb3e42..42e69cc21b 100644
--- a/calendar.php
+++ b/calendar.php
@@ -47,7 +47,7 @@ $filterof = Filter::get('filterof', 'all|living|recent', 'all');
$filtersx = Filter::get('filtersx', '[MF]', '');
if ($cal . $day . $month . $year === '') {
- // No date specified? Use the most likely calendar
+ // No date specified? Use the most likely calendar
$cal = I18N::defaultCalendar()->gedcomCalendarEscape();
}
@@ -106,7 +106,7 @@ $days_in_week = $cal_date->daysInWeek();
$cal_month = $cal_date->format('%O');
$today_month = $today->format('%O');
-// Invalid dates? Go to monthly view, where they'll be found.
+// Invalid dates? Go to monthly view, where they'll be found.
if ($cal_date->d > $days_in_month && $view === 'day') {
$view = 'month';
}
@@ -343,7 +343,7 @@ case 'day':
case 'month':
$cal_date->d = 0;
$cal_date->setJdFromYmd();
- // Make a separate list for each day. Unspecified/invalid days go in day 0.
+ // Make a separate list for each day. Unspecified/invalid days go in day 0.
for ($d = 0; $d <= $days_in_month; ++$d) {
$found_facts[$d] = array();
}
@@ -451,7 +451,7 @@ case 'day':
break;
case 'month':
-// We use JD%7 = 0/Mon...6/Sun. Standard definitions use 0/Sun...6/Sat.
+// We use JD%7 = 0/Mon…6/Sun. Standard definitions use 0/Sun…6/Sat.
$week_start = (I18N::firstDay() + 6) % 7;
$weekend_start = (I18N::weekendStart() + 6) % 7;
$weekend_end = (I18N::weekendEnd() + 6) % 7;
@@ -473,8 +473,7 @@ case 'month':
echo '</tr>';
echo '</thead>';
echo '<tbody>';
- // Print days 1-n of the month...
- // ...but extend to cover "empty" days before/after the month to make whole weeks.
+ // Print days 1 to n of the month, but extend to cover "empty" days before/after the month to make whole weeks.
// e.g. instead of 1 -> 30 (=30 days), we might have -1 -> 33 (=35 days)
$start_d = 1 - ($cal_date->minJD - $week_start) % $days_in_week;
$end_d = $days_in_month + ($days_in_week - ($cal_date->maxJD - $week_start + 1) % $days_in_week) % $days_in_week;