mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-11 00:18:25 +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++)
|
for($i=0;$i<7;$i++)
|
||||||
{
|
{
|
||||||
$var = Array(
|
$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' => ''
|
'day_image' => ''
|
||||||
);
|
);
|
||||||
$this->output_template_array($mini_cal_tpl,'daynames','mini_day',$var);
|
$this->output_template_array($mini_cal_tpl,'daynames','mini_day',$var);
|
||||||
|
Loading…
Reference in New Issue
Block a user