summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-01-15 14:02:36 +0100
committerRobin Appelman <icewind@owncloud.com>2015-01-15 14:02:36 +0100
commit7ef006e1c9e5b3241b29eaf79d3561c43c44865b (patch)
treeab5779fe488f17d57b119b28cad501b2292bb767 /lib
parent5a58d142e5edca888e3e8a77c8e4b3fdb514b9f8 (diff)
downloadnextcloud-server-7ef006e1c9e5b3241b29eaf79d3561c43c44865b.tar.gz
nextcloud-server-7ef006e1c9e5b3241b29eaf79d3561c43c44865b.zip
php <5.4 style array
Diffstat (limited to 'lib')
-rw-r--r--lib/private/files/view.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php
index 7e8589e4433..7609dbe536c 100644
--- a/lib/private/files/view.php
+++ b/lib/private/files/view.php
@@ -1290,7 +1290,7 @@ class View {
$this->getAbsolutePath($path),
$storage,
$internalPath,
- [
+ array(
'fileid' => null,
'mimetype' => $storage->getMimeType($internalPath),
'name' => basename($path),
@@ -1299,7 +1299,7 @@ class View {
'mtime' => $storage->filemtime($internalPath),
'encrypted' => false,
'permissions' => \OCP\PERMISSION_ALL
- ],
+ ),
$mount
);
}