summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-09-20 16:46:33 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-09-20 16:46:33 +0200
commit4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb (patch)
tree50fdac273f6202d1f22dd2b4bbe206c10312df3d /apps/files_trashbin
parent9e39118b526afe6464fc15ea3fa5ed6301f1f63d (diff)
downloadnextcloud-server-4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb.tar.gz
nextcloud-server-4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb.zip
remove unneccessary lib in namespace
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/helper.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php
index 1c89eaf2c2a..99f534565f9 100644
--- a/apps/files_trashbin/lib/helper.php
+++ b/apps/files_trashbin/lib/helper.php
@@ -62,11 +62,11 @@ class Helper
}
$i['permissions'] = \OCP\PERMISSION_READ;
$i['isPreviewAvailable'] = \OCP\Preview::isMimeSupported($r['mime']);
- $i['icon'] = \OCA\Files\Lib\Helper::determineIcon($i);
+ $i['icon'] = \OCA\Files\Helper::determineIcon($i);
$files[] = $i;
}
- usort($files, array('\OCA\Files\Lib\Helper', 'fileCmp'));
+ usort($files, array('\OCA\Files\Helper', 'fileCmp'));
return $files;
}