Update function calls

update function calls for moved functions
This commit is contained in:
Adam Magness 2018-11-06 09:52:10 -05:00
parent 1d571a527b
commit 352da9bcf3
5 changed files with 16 additions and 16 deletions

View file

@ -463,11 +463,11 @@ class Temporal
$tddate = intval(DateTimeFormat::localNow('j'));
}
$str_month = day_translate($mtab[$m]);
$str_month = L10n::getDay($mtab[$m]);
$o = '<table class="calendar' . $class . '">';
$o .= "<caption>$str_month $y</caption><tr>";
for ($a = 0; $a < 7; $a ++) {
$o .= '<th>' . mb_substr(day_translate($dn[$a]), 0, 3, 'UTF-8') . '</th>';
$o .= '<th>' . mb_substr(L10n::getDay($dn[$a]), 0, 3, 'UTF-8') . '</th>';
}
$o .= '</tr><tr>';