summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-04-16 10:03:15 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-16 10:03:15 +0200
commit6e041088b8b9002a6e101808fabdedde6b6be388 (patch)
tree5ecbba66f626069a6900dcb7e7f43ad11a5f4e33 /lib
parentda23ab0dd6737dcd615c8b3e7e773211fc43188c (diff)
downloadnextcloud-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.php4
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;
}
/**