From: Björn Schießle Date: Thu, 7 Feb 2013 11:45:27 +0000 (+0100) Subject: OCA_Versions is now known as OCA\Files_Versions X-Git-Tag: v5.0.0alpha1~89^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c81d7b0b903b15e57676ea249ee90707c1d7a3f6;p=nextcloud-server.git OCA_Versions is now known as OCA\Files_Versions --- 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); }