diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-20 16:46:33 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-20 16:46:33 +0200 |
commit | 4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb (patch) | |
tree | 50fdac273f6202d1f22dd2b4bbe206c10312df3d /apps/files_sharing/public.php | |
parent | 9e39118b526afe6464fc15ea3fa5ed6301f1f63d (diff) | |
download | nextcloud-server-4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb.tar.gz nextcloud-server-4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb.zip |
remove unneccessary lib in namespace
Diffstat (limited to 'apps/files_sharing/public.php')
-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 02201c16eda..136767aeb45 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -22,7 +22,7 @@ function fileCmp($a, $b) { function determineIcon($file, $sharingRoot, $sharingToken) { // for folders we simply reuse the files logic if($file['type'] == 'dir') { - return \OCA\Files\Lib\Helper::determineIcon($file); + return \OCA\Files\Helper::determineIcon($file); } $relativePath = substr($file['path'], 6); |