diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-16 10:03:15 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-16 10:03:15 +0200 |
commit | 6e041088b8b9002a6e101808fabdedde6b6be388 (patch) | |
tree | 5ecbba66f626069a6900dcb7e7f43ad11a5f4e33 /lib | |
parent | da23ab0dd6737dcd615c8b3e7e773211fc43188c (diff) | |
download | nextcloud-server-6e041088b8b9002a6e101808fabdedde6b6be388.tar.gz nextcloud-server-6e041088b8b9002a6e101808fabdedde6b6be388.zip |
Revert "[stable8] Properly add trailing slash to mount point"
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/mount/mountpoint.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/private/files/mount/mountpoint.php b/lib/private/files/mount/mountpoint.php index b62dc478015..85edb7cb570 100644 --- a/lib/private/files/mount/mountpoint.php +++ b/lib/private/files/mount/mountpoint.php @@ -95,12 +95,10 @@ class MountPoint implements IMountPoint { } /** - * Sets the mount point path, relative to data/ - * * @param string $mountPoint new mount point */ public function setMountPoint($mountPoint) { - $this->mountPoint = $this->formatPath($mountPoint); + $this->mountPoint = $mountPoint; } /** |