diff options
-rw-r--r-- | apps/files_sharing/lib/api.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index 15bd7be9143..d92d30156cb 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -132,7 +132,8 @@ class Api { // if there are no shares than there are also no reshares if (count($shares) > 0) { $ids = array(); - $path = reset($shares)['path']; + $firstShare = reset($shares); + $path = $firstShare['path']; foreach ($shares as $share) { $ids[] = $share['id']; } |