summaryrefslogtreecommitdiffstats
path: root/apps/calendar/index.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2011-10-18 19:58:47 +0200
committerBart Visscher <bartv@thisnet.nl>2011-10-20 23:49:27 +0200
commit2e6ec6ce0bd697377fa9d9a35aa2ca007d92f9be (patch)
tree8f433767e54b99aa8a7636e710b356e069a3e3c1 /apps/calendar/index.php
parent4075d18050b8c894fe58c700703ac0844f8b95b8 (diff)
downloadnextcloud-server-2e6ec6ce0bd697377fa9d9a35aa2ca007d92f9be.tar.gz
nextcloud-server-2e6ec6ce0bd697377fa9d9a35aa2ca007d92f9be.zip
Connect calendar buttons to actions
Diffstat (limited to 'apps/calendar/index.php')
-rw-r--r--apps/calendar/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/calendar/index.php b/apps/calendar/index.php
index 9584e62e449..5f37d67a707 100644
--- a/apps/calendar/index.php
+++ b/apps/calendar/index.php
@@ -19,7 +19,8 @@ $eventSources = array();
foreach($calendars as $calendar){
$eventSources[] = array(
'url' => 'ajax/events.php?calendar_id='.$calendar['id'],
- 'color' => '#'.$calendar['calendarcolor'],
+ 'backgroundColor' => '#'.$calendar['calendarcolor'],
+ 'borderColor' => '#888',
'textColor' => 'black',
);
}