diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-25 16:54:46 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-30 10:07:19 -0400 |
commit | f328f53ec17a53efa3136c192dc035c731d94b7f (patch) | |
tree | 641872cbe62da49903e7d9e8d5430f4a5c8989fc /apps | |
parent | 099b16350fd33f907f55d9894530b934d1be9a7a (diff) | |
download | nextcloud-server-f328f53ec17a53efa3136c192dc035c731d94b7f.tar.gz nextcloud-server-f328f53ec17a53efa3136c192dc035c731d94b7f.zip |
Fix filesystem hash, no longer using basicOperation()
Conflicts:
lib/filesystemview.php
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/sharedstorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/sharedstorage.php b/apps/files_sharing/sharedstorage.php index d46a7d4e70a..41af077b5a9 100644 --- a/apps/files_sharing/sharedstorage.php +++ b/apps/files_sharing/sharedstorage.php @@ -456,7 +456,7 @@ class OC_Filestorage_Shared extends OC_Filestorage { } } - public function hash($type, $path, $raw) { + public function hash($type, $path, $raw = false) { $source = $this->getSource($path); if ($source) { $storage = OC_Filesystem::getStorage($source); |