mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
check if flag 'allday' is set
This commit is contained in:
parent
228bfffba1
commit
d1a6651fa5
|
@ -208,7 +208,7 @@ class SeedDMS_View_Calendar extends SeedDMS_Bootstrap_Style {
|
||||||
$arr[] = array(
|
$arr[] = array(
|
||||||
'start'=>$item['date'],
|
'start'=>$item['date'],
|
||||||
'title'=>$item['document']->getName()."\n".$item['msg'],
|
'title'=>$item['document']->getName()."\n".$item['msg'],
|
||||||
'allDay'=>false,
|
'allDay'=>isset($item['allday']) ? $item['allday'] : false,
|
||||||
'color'=>$color,
|
'color'=>$color,
|
||||||
'type'=>$item['type'],
|
'type'=>$item['type'],
|
||||||
'documentid'=> (int) $item['document']->getID(),
|
'documentid'=> (int) $item['document']->getID(),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user