diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-31 14:21:46 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-31 14:21:46 -0400 |
commit | 9e4c3b83427c4c226e64543b4c7d198a598a8164 (patch) | |
tree | 6244ff29c744f034a7cfb8f354c8b68412761437 /lib | |
parent | 8d01e1a3555e303deed72636d0d7fabce447cf1c (diff) | |
download | nextcloud-server-9e4c3b83427c4c226e64543b4c7d198a598a8164.tar.gz nextcloud-server-9e4c3b83427c4c226e64543b4c7d198a598a8164.zip |
Remove break, it broke the statuses :)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/share.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index 75dea92eea6..3053da47e86 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -538,7 +538,6 @@ class Share { foreach ($items as $item) { if ($item['share_type'] == self::SHARE_TYPE_PRIVATE_LINK) { $statuses[$item['item']] = true; - break; } else if (!isset($statuses[$item['item']])) { $statuses[$item['item']] = false; } |