summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-09-07 14:28:20 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-09-07 14:28:20 +0200
commit7af7fdd92936139480ef0fbb41fbcba970ba7c32 (patch)
tree4c54ab4d1ffd0cac3efa821dbc3f7c716ef02796 /apps
parentf653a34d8febdfdcb3c5885edeabb028c2254c91 (diff)
downloadnextcloud-server-7af7fdd92936139480ef0fbb41fbcba970ba7c32.tar.gz
nextcloud-server-7af7fdd92936139480ef0fbb41fbcba970ba7c32.zip
Use context function call instead of static
Diffstat (limited to 'apps')
-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 2771e0415b0..9aa9bbf562b 100644
--- a/apps/files_sharing/lib/sharedmount.php
+++ b/apps/files_sharing/lib/sharedmount.php
@@ -81,7 +81,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;
}