diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-20 16:37:07 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-09-20 16:37:07 +0200 |
commit | 9e39118b526afe6464fc15ea3fa5ed6301f1f63d (patch) | |
tree | 6db10176608de0d7a5b79d6a3b05750fc01791a9 /apps/files_sharing/public.php | |
parent | 09cfebe93653f9168bdfb8e480a47c50a28868ea (diff) | |
download | nextcloud-server-9e39118b526afe6464fc15ea3fa5ed6301f1f63d.tar.gz nextcloud-server-9e39118b526afe6464fc15ea3fa5ed6301f1f63d.zip |
namespaces use upcasefirst parts
when _ is left in namespace and files are named after their classes the autoloader will also find classes in the lib folder of an app
its magic!
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 c997a7950c2..02201c16eda 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\Lib\Helper::determineIcon($file); } $relativePath = substr($file['path'], 6); |