diff options
author | Georg Ehrke <ownclouddev@georgswebsite.de> | 2012-02-20 11:46:10 +0100 |
---|---|---|
committer | Georg Ehrke <ownclouddev@georgswebsite.de> | 2012-02-20 11:46:10 +0100 |
commit | a069d83f4438ddbbde05bc80f9790be7b0781957 (patch) | |
tree | 4050c12bc90eeece609d1050f1bbbb3d9b9a8ff8 /apps/calendar/index.php | |
parent | ec7ed3c88228063af3221ccbdfe9add28eac0422 (diff) | |
download | nextcloud-server-a069d83f4438ddbbde05bc80f9790be7b0781957.tar.gz nextcloud-server-a069d83f4438ddbbde05bc80f9790be7b0781957.zip |
fix unexspected T-String in calendars index.php
Diffstat (limited to 'apps/calendar/index.php')
-rw-r--r-- | apps/calendar/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/index.php b/apps/calendar/index.php index 117272ebc4c..e3f108afc0e 100644 --- a/apps/calendar/index.php +++ b/apps/calendar/index.php @@ -20,7 +20,7 @@ foreach($calendars as $calendar){ $eventSources[] = OC_Calendar_Calendar::getEventSourceInfo($calendar); } $eventSources[] = array('url' => 'ajax/events.php?calendar_id=shared_rw', 'backgroundColor' => '#1D2D44', 'borderColor' => '#888', 'textColor' => 'white', 'editable'=>'true'); -$eventSources[] = array('url' => 'ajax/events.php?calendar_id=shared_r, 'backgroundColor' => '#1D2D44', 'borderColor' => '#888', 'textColor' => 'white', 'editable' => 'false'); +$eventSources[] = array('url' => 'ajax/events.php?calendar_id=shared_r', 'backgroundColor' => '#1D2D44', 'borderColor' => '#888', 'textColor' => 'white', 'editable' => 'false'); //Fix currentview for fullcalendar if(OC_Preferences::getValue(OC_USER::getUser(), 'calendar', 'currentview', 'month') == "oneweekview"){ OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", "agendaWeek"); |