]> source.dussan.org Git - nextcloud-server.git/commitdiff
add space between calendarname and owner name
authorThomas Citharel <tcit@tcit.fr>
Thu, 11 Aug 2016 14:55:57 +0000 (16:55 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Mon, 26 Sep 2016 09:55:40 +0000 (11:55 +0200)
apps/dav/lib/CalDAV/CalDavBackend.php

index e3b90a00695e8a0ef6901631d576e558afe75d00..5f9034061688e718229b201889232434921c0de7 100644 (file)
@@ -392,7 +392,7 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
                }
 
                list(, $name) = URLUtil::splitPath($row['principaluri']);
-               $row['displayname'] = $row['displayname'] . "($name)";
+               $row['displayname'] = $row['displayname'] . ' ' . "($name)";
                $components = [];
                if ($row['components']) {
                        $components = explode(',',$row['components']);