summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/index.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-09-20 16:37:07 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-09-20 16:37:07 +0200
commit9e39118b526afe6464fc15ea3fa5ed6301f1f63d (patch)
tree6db10176608de0d7a5b79d6a3b05750fc01791a9 /apps/files_trashbin/index.php
parent09cfebe93653f9168bdfb8e480a47c50a28868ea (diff)
downloadnextcloud-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_trashbin/index.php')
-rw-r--r--apps/files_trashbin/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php
index 9f17448a757..d8661e170a5 100644
--- a/apps/files_trashbin/index.php
+++ b/apps/files_trashbin/index.php
@@ -36,7 +36,7 @@ if ($isIE8 && isset($_GET['dir'])){
$ajaxLoad = false;
if (!$isIE8){
- $files = \OCA\files_trashbin\lib\Helper::getTrashFiles($dir);
+ $files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir);
}
else{
$files = array();
@@ -54,7 +54,7 @@ if ($dir && $dir !== '/') {
$dirlisting = true;
}
-$breadcrumb = \OCA\files_trashbin\lib\Helper::makeBreadcrumb($dir);
+$breadcrumb = \OCA\Files_Trashbin\Helper::makeBreadcrumb($dir);
$breadcrumbNav = new OCP\Template('files_trashbin', 'part.breadcrumb', '');
$breadcrumbNav->assign('breadcrumb', $breadcrumb);