summaryrefslogtreecommitdiffstats
path: root/lib/files/view.php
diff options
context:
space:
mode:
authorFlorin Peter <github@florin-peter.de>2013-04-23 22:20:31 +0200
committerFlorin Peter <github@florin-peter.de>2013-04-23 22:20:31 +0200
commit25ff32db6bec0992b0fac18b04345aa5e99f4ea1 (patch)
treec5c3227a382baa62c0c2b79a18fb3f5b1f9dc7fa /lib/files/view.php
parentf8819f54c2280f492d2e9cd4d7b0f227168d6d99 (diff)
downloadnextcloud-server-25ff32db6bec0992b0fac18b04345aa5e99f4ea1.tar.gz
nextcloud-server-25ff32db6bec0992b0fac18b04345aa5e99f4ea1.zip
Added post proxy for getFileInfo.
This is needed for WebDAV and FileSize @samtuke and @schiesbn you guys know a better solution?
Diffstat (limited to 'lib/files/view.php')
-rw-r--r--lib/files/view.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/files/view.php b/lib/files/view.php
index f607bb59aac..bd4812f8f81 100644
--- a/lib/files/view.php
+++ b/lib/files/view.php
@@ -724,6 +724,9 @@ class View {
$data['permissions'] = $permissions;
}
}
+
+ $data = \OC_FileProxy::runPostProxies('getFileInfo', $path, $data);
+
return $data;
}