diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-08-01 16:24:19 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-10-01 15:13:47 +0200 |
commit | b52154b306f13327a593fdc1231fcd454720e0a6 (patch) | |
tree | 2af18b58938d977d25da99c732d9ac02d3d20132 /lib/private/share | |
parent | 64a9315b4a89d94eab45b996d740600c13476734 (diff) | |
download | nextcloud-server-b52154b306f13327a593fdc1231fcd454720e0a6.tar.gz nextcloud-server-b52154b306f13327a593fdc1231fcd454720e0a6.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 2864e8532aa..44051409504 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1512,7 +1512,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; |