summaryrefslogtreecommitdiffstats
path: root/apps/calendar/index.php
diff options
context:
space:
mode:
authorGeorg Ehrke <ownclouddev@georgswebsite.de>2012-02-20 11:46:10 +0100
committerGeorg Ehrke <ownclouddev@georgswebsite.de>2012-02-20 11:46:10 +0100
commita069d83f4438ddbbde05bc80f9790be7b0781957 (patch)
tree4050c12bc90eeece609d1050f1bbbb3d9b9a8ff8 /apps/calendar/index.php
parentec7ed3c88228063af3221ccbdfe9add28eac0422 (diff)
downloadnextcloud-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.php2
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");