summaryrefslogtreecommitdiffstats
path: root/apps/contacts/export.php
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-01-15 00:55:02 +0100
committerGeorg Ehrke <dev@georgswebsite.de>2012-01-15 00:56:11 +0100
commit360778e5208ac3cfb55c5a5f025a8449ecb6cf0b (patch)
tree40d6211a66231fde6edd9d0f81ffaa3058c321d0 /apps/contacts/export.php
parent872d301af3a69c7dc4493cf335638f66affabf24 (diff)
downloadnextcloud-server-360778e5208ac3cfb55c5a5f025a8449ecb6cf0b.tar.gz
nextcloud-server-360778e5208ac3cfb55c5a5f025a8449ecb6cf0b.zip
use backslash n instead of a real new line
Diffstat (limited to 'apps/contacts/export.php')
-rw-r--r--apps/contacts/export.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/contacts/export.php b/apps/contacts/export.php
index d17b5e55146..fc2aa86500f 100644
--- a/apps/contacts/export.php
+++ b/apps/contacts/export.php
@@ -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()){