From: Thomas Tanghus Date: Thu, 1 Dec 2011 15:06:27 +0000 (+0100) Subject: Removed some debug statements. X-Git-Tag: v3.0~79^2~1^2~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=58d1a3516af1450c6d82f75384bfb2a3f8ea3282;p=nextcloud-server.git Removed some debug statements. Changed double quotes to single quotes. --- 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']; } ?> diff --git a/apps/contacts/export.php b/apps/contacts/export.php index 3c74d7f553a..4a1e7a172d4 100644 --- a/apps/contacts/export.php +++ b/apps/contacts/export.php @@ -9,36 +9,30 @@ require_once ("../../lib/base.php"); OC_Util::checkLoggedIn(); OC_Util::checkAppEnabled('contacts'); -$book = isset($_GET["bookid"]) ? $_GET["bookid"] : NULL; -$contact = isset($_GET["contactid"]) ? $_GET["contactid"] : NULL; +$book = isset($_GET['bookid']) ? $_GET['bookid'] : NULL; +$contact = isset($_GET['contactid']) ? $_GET['contactid'] : NULL; if(isset($book)){ - OC_Log::write('contacts',"book isset($book)",OC_Log::DEBUG); $addressbook = OC_Contacts_Addressbook::find($book); - OC_Log::write('contacts',"Got addressbook",OC_Log::DEBUG); - OC_Log::write('contacts',"userid: {$addressbook["userid"]}",OC_Log::DEBUG); - if($addressbook["userid"] != OC_User::getUser()){ + if($addressbook['userid'] != OC_User::getUser()){ OC_JSON::error(); exit; } - OC_Log::write('contacts',"User match",OC_Log::DEBUG); $cardobjects = OC_Contacts_VCard::all($book); - header("Content-Type: text/directory"); - header("Content-Disposition: inline; filename=addressbook.vcf"); + header('Content-Type: text/directory'); + header('Content-Disposition: inline; filename=' . $addressbook['displayname'] . '.vcf'); for($i = 0;$i <= count($cardobjects); $i++){ - echo $cardobjects[$i]["carddata"] . "\n"; + echo trim($cardobjects[$i]['carddata']) . '\n'; } }elseif(isset($contact)){ - OC_Log::write('contacts',"contact isset($contact)",OC_Log::DEBUG); $data = OC_Contacts_VCard::find($contact); - $addressbookid = $data["addressbookid"]; - OC_Log::write('contacts',"addressbookid: $addressbookid",OC_Log::DEBUG); + $addressbookid = $data['addressbookid']; $addressbook = OC_Contacts_Addressbook::find($addressbookid); - if($addressbook["userid"] != OC_User::getUser()){ + if($addressbook['userid'] != OC_User::getUser()){ OC_JSON::error(); exit; } - header("Content-Type: text/directory"); - header("Content-Disposition: inline; filename=" . $data["fullname"] . ".vcf"); - echo $data["carddata"]; + header('Content-Type: text/directory'); + header('Content-Disposition: inline; filename=' . $data['fullname'] . '.vcf'); + echo $data['carddata']; } ?>