diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2014-07-14 17:03:36 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2014-07-15 13:56:02 +0200 |
commit | 40fe1275de1dcdb3f17027ceeaef19164956e146 (patch) | |
tree | 8c4278270d7a0ce5a6f5a4dd803d6f6b9835047a /apps/files_trashbin/appinfo | |
parent | 6d7616587375b9e3cc3fae1aa15e33c9a711de06 (diff) | |
download | nextcloud-server-40fe1275de1dcdb3f17027ceeaef19164956e146.tar.gz nextcloud-server-40fe1275de1dcdb3f17027ceeaef19164956e146.zip |
throw exception if file is to large for trash bin
Diffstat (limited to 'apps/files_trashbin/appinfo')
-rw-r--r-- | apps/files_trashbin/appinfo/app.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 383115b8e63..718c2f45a34 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,6 +1,8 @@ <?php $l = OC_L10N::get('files_trashbin'); +OC::$CLASSPATH['OCA\Files_Trashbin\Exceptions\CopyRecursiveException'] = 'files_trashbin/lib/exceptions.php'; + // register hooks \OCA\Files_Trashbin\Trashbin::registerHooks(); |