diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-04-08 19:57:07 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-04-23 12:54:25 +0200 |
commit | ed981294f11bd59733e0d121cbf737e16275b666 (patch) | |
tree | 8b13b3224a29db6e3aa64170154c6f2e1b941595 /apps/files_sharing/lib/share | |
parent | 27c5a978f91e7aa447a2acca040fd173baba53b9 (diff) | |
download | nextcloud-server-ed981294f11bd59733e0d121cbf737e16275b666.tar.gz nextcloud-server-ed981294f11bd59733e0d121cbf737e16275b666.zip |
fix share api tests
Diffstat (limited to 'apps/files_sharing/lib/share')
-rw-r--r-- | apps/files_sharing/lib/share/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index c628b11589d..e1d0b49706b 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -87,7 +87,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { 'path' => $items[key($items)]['path'], 'storage' => $items[key($items)]['storage'], 'permissions' => $items[key($items)]['permissions'], - 'uid_owner' => $items[key($items)]['uid_owner'] + 'uid_owner' => $items[key($items)]['uid_owner'], ); } else if ($format == self::FORMAT_GET_FOLDER_CONTENTS) { $files = array(); |