diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-11-02 21:42:29 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-11-02 21:42:29 +0100 |
commit | 4a5a36577e11e12ca9848617f2126541a2d4d3b1 (patch) | |
tree | 4aae97568b5fb09d9707623837cf2807852cdbdf /lib/files/filesystem.php | |
parent | 51ba12890de08eadd568304039c06f3b718bf868 (diff) | |
parent | a1c37d4be5ce8d6fa95b19465193ea51676a1766 (diff) | |
download | nextcloud-server-4a5a36577e11e12ca9848617f2126541a2d4d3b1.tar.gz nextcloud-server-4a5a36577e11e12ca9848617f2126541a2d4d3b1.zip |
merge master into filesystem
Diffstat (limited to 'lib/files/filesystem.php')
-rw-r--r-- | lib/files/filesystem.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 96660a8ce30..76a188e4120 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -398,6 +398,7 @@ class Filesystem { * @return bool */ static public function isValidPath($path) { + $path = self::normalizePath($path); if (!$path || $path[0] !== '/') { $path = '/' . $path; } |