diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-07 13:14:45 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-07 13:14:45 +0100 |
commit | 7e874af2c89b5d3c07dae45614693dade74b190e (patch) | |
tree | a3204eb9866712232c49a54341658c2df374240b /apps/files_trashbin/ajax/delete.php | |
parent | c81d7b0b903b15e57676ea249ee90707c1d7a3f6 (diff) | |
download | nextcloud-server-7e874af2c89b5d3c07dae45614693dade74b190e.tar.gz nextcloud-server-7e874af2c89b5d3c07dae45614693dade74b190e.zip |
rename OCA_Trash to OCA\Files_Trashbin
Diffstat (limited to 'apps/files_trashbin/ajax/delete.php')
-rw-r--r-- | apps/files_trashbin/ajax/delete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index a166ce55c88..b3d41f1be64 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -15,7 +15,7 @@ if ($path_parts['dirname'] == '.') { $timestamp = null; } -if (OCA_Trash\Trashbin::delete($filename, $timestamp)) { +if (OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp)) { error_log("feinifeini"); OCP\JSON::success(array("data" => array("filename" => $file))); } else { |