diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-03-04 12:59:39 -0800 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-03-04 12:59:39 -0800 |
commit | 10b108ed8a280bc852dd086273c11d27cebd34b3 (patch) | |
tree | d217e94b25a7f5c4a7a8da74fa748eecdacc669b /apps/files_trashbin | |
parent | 62dde34887b26d91d324d1c1b5be4702721291c4 (diff) | |
parent | f96eef926e0485eae346601863f6e9443135f8a8 (diff) | |
download | nextcloud-server-10b108ed8a280bc852dd086273c11d27cebd34b3.tar.gz nextcloud-server-10b108ed8a280bc852dd086273c11d27cebd34b3.zip |
Merge pull request #2030 from j-ed/master
suppress log messages like `include path for class ... starts with "apps/"`
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/appinfo/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index 7c04e583db1..a6a99db034c 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -1,7 +1,7 @@ <?php -OC::$CLASSPATH['OCA\Files_Trashbin\Hooks'] = 'apps/files_trashbin/lib/hooks.php'; -OC::$CLASSPATH['OCA\Files_Trashbin\Trashbin'] = 'apps/files_trashbin/lib/trash.php'; +OC::$CLASSPATH['OCA\Files_Trashbin\Hooks'] = 'files_trashbin/lib/hooks.php'; +OC::$CLASSPATH['OCA\Files_Trashbin\Trashbin'] = 'files_trashbin/lib/trash.php'; OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Files_Trashbin\Hooks", "remove_hook"); |