From 58d1a3516af1450c6d82f75384bfb2a3f8ea3282 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 1 Dec 2011 16:06:27 +0100 Subject: Removed some debug statements. Changed double quotes to single quotes. --- apps/calendar/export.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'apps/calendar/export.php') diff --git a/apps/calendar/export.php b/apps/calendar/export.php index 3e93a1ad618..1647bf14a99 100644 --- a/apps/calendar/export.php +++ b/apps/calendar/export.php @@ -6,33 +6,33 @@ * See the COPYING-README file. */ -require_once ("../../lib/base.php"); +require_once ('../../lib/base.php'); OC_Util::checkLoggedIn(); OC_Util::checkAppEnabled('calendar'); -$cal = isset($_GET["calid"]) ? $_GET["calid"] : NULL; -$event = isset($_GET["eventid"]) ? $_GET["eventid"] : NULL; +$cal = isset($_GET['calid']) ? $_GET['calid'] : NULL; +$event = isset($_GET['eventid']) ? $_GET['eventid'] : NULL; if(isset($cal)){ $calendar = OC_Calendar_Calendar::findCalendar($cal); - if($calendar["userid"] != OC_User::getUser()){ + if($calendar['userid'] != OC_User::getUser()){ OC_JSON::error(); exit; } $calobjects = OC_Calendar_Object::all($cal); - header("Content-Type: text/Calendar"); - header("Content-Disposition: inline; filename=calendar.ics"); + header('Content-Type: text/Calendar'); + header('Content-Disposition: inline; filename=' . $calendar['displayname'] . '.ics'); for($i = 0;$i <= count($calobjects); $i++){ - echo $calobjects[$i]["calendardata"] . "\n"; + echo $calobjects[$i]['calendardata'] . '\n'; } }elseif(isset($event)){ - $data = OC_Calendar_Object::find($_GET["eventid"]); - $calendarid = $data["calendarid"]; + $data = OC_Calendar_Object::find($_GET['eventid']); + $calendarid = $data['calendarid']; $calendar = OC_Calendar_Calendar::findCalendar($calendarid); - if($calendar["userid"] != OC_User::getUser()){ + if($calendar['userid'] != OC_User::getUser()){ OC_JSON::error(); exit; } - header("Content-Type: text/Calendar"); - header("Content-Disposition: inline; filename=" . $data["summary"] . ".ics"); - echo $data["calendardata"]; + header('Content-Type: text/Calendar'); + header('Content-Disposition: inline; filename=' . $data['summary'] . '.ics'); + echo $data['calendardata']; } ?> -- cgit v1.2.3