From d3427be5e40b8889fd2b23b9f716e596de29694b Mon Sep 17 00:00:00 2001
From: Lukas Reschke <lukas@statuscode.ch>
Date: Fri, 10 Aug 2012 22:20:32 +0200
Subject: [PATCH] Following the code guidelines makes Michael happy :-)

---
 apps/calendar/appinfo/remote.php | 4 +++-
 apps/contacts/appinfo/remote.php | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/apps/calendar/appinfo/remote.php b/apps/calendar/appinfo/remote.php
index 39f8f83b168..6669d7ce2c4 100644
--- a/apps/calendar/appinfo/remote.php
+++ b/apps/calendar/appinfo/remote.php
@@ -21,7 +21,9 @@ $principalBackend = new OC_Connector_Sabre_Principal();
 $caldavBackend    = new OC_Connector_Sabre_CalDAV();
 
 // Root nodes
-$collection = new Sabre_CalDAV_Principal_Collection($principalBackend); $collection->disableListing = true; // Disable listening
+$collection = new Sabre_CalDAV_Principal_Collection($principalBackend); 
+$collection->disableListing = true; // Disable listening
+
 $nodes = array( 
 	$collection, 
 	new Sabre_CalDAV_CalendarRootNode($principalBackend, $caldavBackend),
diff --git a/apps/contacts/appinfo/remote.php b/apps/contacts/appinfo/remote.php
index 011938e2cf3..9eee55583a4 100644
--- a/apps/contacts/appinfo/remote.php
+++ b/apps/contacts/appinfo/remote.php
@@ -36,7 +36,9 @@ $principalBackend = new OC_Connector_Sabre_Principal();
 $carddavBackend   = new OC_Connector_Sabre_CardDAV();
 
 // Root nodes
-$collection = new Sabre_CalDAV_Principal_Collection($principalBackend); $collection->disableListing = true; // Disable listening
+$collection = new Sabre_CalDAV_Principal_Collection($principalBackend); 
+$collection->disableListing = true; // Disable listening
+
 $nodes = array( 
 	$collection, 
 	new Sabre_CardDAV_AddressBookRoot($principalBackend, $carddavBackend),