Merge pull request #11050 from owncloud/enc-flockfix

Remove passing by reference to allow for proper GC
remotes/origin/fix-10825
Lukas Reschke 12 years ago
commit 90e91a9d10
  1. 2
      apps/files_encryption/lib/proxy.php

@ -247,7 +247,7 @@ class Proxy extends \OC_FileProxy {
* @param resource $result
* @return resource
*/
public function postFopen($path, &$result) {
public function postFopen($path, $result) {
$path = \OC\Files\Filesystem::normalizePath($path);

Loading…
Cancel
Save