summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-10-24 14:43:34 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2012-10-24 14:43:34 +0300
commit41898a473e8ece37c92e709f685c90d7952d1694 (patch)
treea6fe78a1e614f7b6156c173997f418818a7c786d
parenta9a27306dea1e7e78945c05ac92e8e941dd4e271 (diff)
downloadnextcloud-server-41898a473e8ece37c92e709f685c90d7952d1694.tar.gz
nextcloud-server-41898a473e8ece37c92e709f685c90d7952d1694.zip
Apply coding style guide
-rw-r--r--apps/files_sharing/public.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php
index 5f74c8e5266..db10a8faeee 100644
--- a/apps/files_sharing/public.php
+++ b/apps/files_sharing/public.php
@@ -22,7 +22,8 @@ if (isset($_GET['token'])) {
// Enf of backward compatibility
function getID($path) {
- // use the share table from the db to find the item source if the file was reshared because shared files are not stored in the file cache.
+ // use the share table from the db to find the item source if the file was reshared because shared files
+ //are not stored in the file cache.
if (substr(OC_Filesystem::getMountPoint($path), -7, 6) == "Shared") {
$path_parts = explode('/', $path, 5);
$user = $path_parts[1];