diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2017-07-20 09:43:23 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-08-01 08:20:17 +0200 |
commit | fc369dd86ea03f3bccb0e1af0686730a0dcb8b9f (patch) | |
tree | 62c80517f0882867aaabbc6f7295ec416f8145c2 /apps/dav/lib/DAV | |
parent | f57a3aa81b27cdc7fbf4595deca9022384aacc91 (diff) | |
download | nextcloud-server-fc369dd86ea03f3bccb0e1af0686730a0dcb8b9f.tar.gz nextcloud-server-fc369dd86ea03f3bccb0e1af0686730a0dcb8b9f.zip |
[DAV] Fix URLUtil::splitPath usage
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/dav/lib/DAV')
-rw-r--r-- | apps/dav/lib/DAV/SystemPrincipalBackend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/DAV/SystemPrincipalBackend.php b/apps/dav/lib/DAV/SystemPrincipalBackend.php index 6a71909c6fd..8c19e92499d 100644 --- a/apps/dav/lib/DAV/SystemPrincipalBackend.php +++ b/apps/dav/lib/DAV/SystemPrincipalBackend.php @@ -163,7 +163,7 @@ class SystemPrincipalBackend extends AbstractBackend { * @return array */ function getGroupMembership($principal) { - list($prefix, $name) = URLUtil::splitPath($principal); + list($prefix, $name) = \Sabre\Uri\split($principal); if ($prefix === 'principals/system') { $principal = $this->getPrincipalByPath($principal); |