aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Command
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-08-18 15:10:18 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2016-08-24 08:50:25 +0200
commit53182fb780dbec9ac98f1e6f137201c6348a99cc (patch)
treed62bb38050771d701c3ee7150efa3b09961d56a4 /apps/dav/lib/Command
parent2f1b17d44a854221a4b3c461df80d0522ac3c8b5 (diff)
downloadnextcloud-server-53182fb780dbec9ac98f1e6f137201c6348a99cc.tar.gz
nextcloud-server-53182fb780dbec9ac98f1e6f137201c6348a99cc.zip
Better displaynames for shared calendars
Diffstat (limited to 'apps/dav/lib/Command')
-rw-r--r--apps/dav/lib/Command/CreateCalendar.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Command/CreateCalendar.php b/apps/dav/lib/Command/CreateCalendar.php
index 7d07ad03279..0bc6398250e 100644
--- a/apps/dav/lib/Command/CreateCalendar.php
+++ b/apps/dav/lib/Command/CreateCalendar.php
@@ -76,7 +76,7 @@ class CreateCalendar extends Command {
);
$name = $input->getArgument('name');
- $caldav = new CalDavBackend($this->dbConnection, $principalBackend);
+ $caldav = new CalDavBackend($this->dbConnection, $principalBackend, $this->userManager);
$caldav->createCalendar("principals/users/$user", $name, []);
}
}