mirror of
https://github.com/nextcloud/server.git
synced 2026-03-29 13:53:55 -04:00
add space between calendarname and owner name
This commit is contained in:
parent
8433c3ca31
commit
a4fe596a21
1 changed files with 1 additions and 1 deletions
|
|
@ -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']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue