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/ajax/delete.php | |
parent | 9e39118b526afe6464fc15ea3fa5ed6301f1f63d (diff) | |
download | nextcloud-server-4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb.tar.gz nextcloud-server-4b3e56bcf9a040db67a1ec3cc9bddda751a79bdb.zip |
remove unneccessary lib in namespace
Diffstat (limited to 'apps/files/ajax/delete.php')
-rw-r--r-- | apps/files/ajax/delete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index ad79549e5e4..c69f5a8860c 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\Helper::buildFileStorageStatistics($dir); if ($success) { OCP\JSON::success(array("data" => array_merge(array("dir" => $dir, "files" => $files), $storageStats))); |