diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-08-01 16:24:19 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-09-22 17:54:47 +0200 |
commit | 9105e17307b3e6a80ac32f2b06df12df82ccedd9 (patch) | |
tree | ec17d847151d378e85456206bec42b8cdf014e7b /lib/private/share | |
parent | 89c3b650e6c47899ceea105713b389fe8af78bfa (diff) | |
download | nextcloud-server-9105e17307b3e6a80ac32f2b06df12df82ccedd9.tar.gz nextcloud-server-9105e17307b3e6a80ac32f2b06df12df82ccedd9.zip |
unit tests for grouping of shares pointing to the same source
Diffstat (limited to 'lib/private/share')
-rw-r--r-- | lib/private/share/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 8b0e98b66fe..08d9e7955b0 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1516,7 +1516,7 @@ class Share extends \OC\Share\Constants { * @param string $itemType * @return array of grouped items */ - private static function groupItems($items, $itemType) { + protected static function groupItems($items, $itemType) { $fileSharing = ($itemType === 'file' || $itemType === 'folder') ? true : false; |