Added post proxy for getFileInfo.

This is needed for WebDAV and FileSize
@samtuke and @schiesbn you guys know a better solution?
This commit is contained in:
Florin Peter 2013-04-23 22:20:31 +02:00
parent f8819f54c2
commit 25ff32db6b
1 changed files with 3 additions and 0 deletions

View File

@ -724,6 +724,9 @@ class View {
$data['permissions'] = $permissions;
}
}
$data = \OC_FileProxy::runPostProxies('getFileInfo', $path, $data);
return $data;
}