diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-07 12:45:27 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-07 12:45:27 +0100 |
commit | c81d7b0b903b15e57676ea249ee90707c1d7a3f6 (patch) | |
tree | f5a584c05416807e9671c92617773bb6de3776c4 | |
parent | 35bd7a400d30fb27703d4fa02b107f9629845b7d (diff) | |
download | nextcloud-server-c81d7b0b903b15e57676ea249ee90707c1d7a3f6.tar.gz nextcloud-server-c81d7b0b903b15e57676ea249ee90707c1d7a3f6.zip |
OCA_Versions is now known as OCA\Files_Versions
-rw-r--r-- | apps/files_trashbin/lib/trash.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index e41dcb096c9..10808ca717b 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -65,7 +65,7 @@ class Trashbin { if ( \OCP\App::isEnabled('files_versions') ) {
if ( $view->is_dir('files_versions'.$file_path) ) {
$view->rename('files_versions'.$file_path, 'versions_trashbin/'. $deleted.'.d'.$timestamp);
- } else if ( $versions = \OCA_Versions\Storage::getVersions($file_path) ) {
+ } else if ( $versions = \OCA\Files_Versions\Storage::getVersions($file_path) ) {
foreach ($versions as $v) {
$view->rename('files_versions'.$v['path'].'.v'.$v['version'], 'versions_trashbin/'. $deleted.'.v'.$v['version'].'.d'.$timestamp);
}
|