summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-09-07 14:28:20 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2015-09-08 17:13:39 +0200
commit349c650535fc285833f3db4f300809adf4144a44 (patch)
tree9fa09a1963792252272175c0e09d45878a5601ee /apps/files_sharing/lib
parentf3b8b9019180623e9915d8076f27fa513e089022 (diff)
downloadnextcloud-server-349c650535fc285833f3db4f300809adf4144a44.tar.gz
nextcloud-server-349c650535fc285833f3db4f300809adf4144a44.zip
Use context function call instead of static
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/sharedmount.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/sharedmount.php b/apps/files_sharing/lib/sharedmount.php
index 7b7a465b2ff..1f5159ad4d8 100644
--- a/apps/files_sharing/lib/sharedmount.php
+++ b/apps/files_sharing/lib/sharedmount.php
@@ -75,7 +75,7 @@ class SharedMount extends MountPoint implements MoveableMount {
);
if ($newMountPoint !== $share['file_target']) {
- self::updateFileTarget($newMountPoint, $share);
+ $this->updateFileTarget($newMountPoint, $share);
$share['file_target'] = $newMountPoint;
$share['unique_name'] = true;
}