summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/delete.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/ajax/delete.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/ajax/delete.php')
-rw-r--r--apps/files/ajax/delete.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php
index 5f4856ec790..ad79549e5e4 100644
--- a/apps/files/ajax/delete.php
+++ b/apps/files/ajax/delete.php
@@ -24,7 +24,7 @@ foreach ($files as $file) {
}
// get array with updated storage stats (e.g. max file size) after upload
-$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
+$storageStats = \OCA\Files\Lib\Helper::buildFileStorageStatistics($dir);
if ($success) {
OCP\JSON::success(array("data" => array_merge(array("dir" => $dir, "files" => $files), $storageStats)));