diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-07 14:28:20 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-09-08 17:13:39 +0200 |
commit | 349c650535fc285833f3db4f300809adf4144a44 (patch) | |
tree | 9fa09a1963792252272175c0e09d45878a5601ee /apps/files_sharing/lib | |
parent | f3b8b9019180623e9915d8076f27fa513e089022 (diff) | |
download | nextcloud-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.php | 2 |
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; } |