diff options
author | Florin Peter <github@florin-peter.de> | 2013-04-23 22:20:31 +0200 |
---|---|---|
committer | Florin Peter <github@florin-peter.de> | 2013-04-23 22:20:31 +0200 |
commit | 25ff32db6bec0992b0fac18b04345aa5e99f4ea1 (patch) | |
tree | c5c3227a382baa62c0c2b79a18fb3f5b1f9dc7fa /lib/files/view.php | |
parent | f8819f54c2280f492d2e9cd4d7b0f227168d6d99 (diff) | |
download | nextcloud-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.php | 3 |
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; } |