diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-12-14 23:38:38 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-12-15 00:43:46 +0100 |
commit | 2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc (patch) | |
tree | cab9483141ee8fee237abfdf9550117c1e98296f /apps/files_sharing | |
parent | 85bd28c5081e7c2fea236c4528c23be283aa7350 (diff) | |
download | nextcloud-server-2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc.tar.gz nextcloud-server-2ef2dc4ddabc8b5d86d7a9a5a936ecf3901615cc.zip |
Fix "There must be a single space between the closing parenthesis and the opening brace"
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 71c18380a3b..fef0ed8a8c2 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -160,7 +160,7 @@ if ($linkItem) { exit(); } } - $basePath = substr($pathAndUser['path'] , strlen('/'.$fileOwner.'/files')); + $basePath = substr($pathAndUser['path'], strlen('/'.$fileOwner.'/files')); $path = $basePath; if (isset($_GET['path'])) { $path .= $_GET['path']; |