]> source.dussan.org Git - nextcloud-server.git/commitdiff
use backslash n instead of a real new line
authorGeorg Ehrke <dev@georgswebsite.de>
Sat, 14 Jan 2012 23:55:02 +0000 (00:55 +0100)
committerGeorg Ehrke <dev@georgswebsite.de>
Sat, 14 Jan 2012 23:56:11 +0000 (00:56 +0100)
apps/calendar/export.php
apps/calendar/import.php
apps/contacts/export.php

index ce36116c4cb841b0fcbc191f1799ee2cdacd560a..9886ad8e8cca318ac0d2d08ef9f1bddc83ede755 100644 (file)
@@ -11,8 +11,7 @@ OC_Util::checkLoggedIn();
 OC_Util::checkAppEnabled('calendar');
 $cal = isset($_GET['calid']) ? $_GET['calid'] : NULL;
 $event = isset($_GET['eventid']) ? $_GET['eventid'] : NULL;
-$nl = '
-';
+$nl = "\n";
 if(isset($cal)){
        $calendar = OC_Calendar_App::getCalendar($cal);
        $calobjects = OC_Calendar_Object::all($cal);
index d1186e691e516f7053a0671489453224272ebc72..b1c6f91df8479ea6c15759aaa1367a1fa3923ffc 100644 (file)
@@ -10,6 +10,7 @@ ob_start();
 require_once ('../../lib/base.php');
 OC_JSON::checkLoggedIn();
 OC_Util::checkAppEnabled('calendar');
+$nl = "\n";
 $progressfile = 'import_tmp/' . md5(session_id()) . '.txt';
 if(is_writable('import_tmp/')){
        $progressfopen = fopen($progressfile, 'w');
@@ -36,8 +37,7 @@ if(is_writable('import_tmp/')){
 }
 $searchfor = array('VEVENT', 'VTODO', 'VJOURNAL');
 $parts = $searchfor;
-$filearr = explode('
-', $file);
+$filearr = explode($nl, $file);
 $inelement = false;
 $parts = array();
 $i = 0;
@@ -64,8 +64,6 @@ if(is_writable('import_tmp/')){
        fclose($progressfopen);
 }
 $start = '';
-$nl = '
-';
 for ($i = 0; $i < $parts[0]['begin']; $i++) { 
        if($i == 0){
                $start = $filearr[0];
index d17b5e55146a85ff124269d329e809c8ffa826c4..fc2aa86500fbd7c310b1227506eda25368063006 100644 (file)
@@ -11,8 +11,7 @@ OC_Util::checkLoggedIn();
 OC_Util::checkAppEnabled('contacts');
 $book = isset($_GET['bookid']) ? $_GET['bookid'] : NULL;
 $contact = isset($_GET['contactid']) ? $_GET['contactid'] : NULL;
-$nl = '
-';
+$nl = "\n";
 if(isset($book)){
        $addressbook = OC_Contacts_App::getAddressbook($book);
        if($addressbook['userid'] != OC_User::getUser()){