mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-10 16:08:34 +01:00
use
$GLOBALS['phpgw']->datetime->days_short[$i] instead of substr($GLOBALS['phpgw']->datetime->days[$i],0,2)
This commit is contained in:
parent
561d37df31
commit
27ece26383
@ -254,7 +254,7 @@
|
||||
for($i=0;$i<7;$i++)
|
||||
{
|
||||
$var = Array(
|
||||
'dayname' => '<b>' . substr(lang($GLOBALS['phpgw']->datetime->days[$i]),0,2) . '</b>',
|
||||
'dayname' => '<b>' . lang($GLOBALS['phpgw']->datetime->days_short[$i]) . '</b>',
|
||||
'day_image' => ''
|
||||
);
|
||||
$this->output_template_array($mini_cal_tpl,'daynames','mini_day',$var);
|
||||
|
Loading…
Reference in New Issue
Block a user