summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-25 22:41:09 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-25 22:41:09 +0100
commit1ae10b9da3280b9bb6fc3965d1ace43f1c0be56f (patch)
tree6c5baf7e48fb399d7bf1b151b7cc40d5052113e2 /apps
parentbbc2e37259128ba12082e731bacdc740495ba2ea (diff)
parenteabeedb306849e3ec8916de5791a3951074a199f (diff)
downloadnextcloud-server-1ae10b9da3280b9bb6fc3965d1ace43f1c0be56f.tar.gz
nextcloud-server-1ae10b9da3280b9bb6fc3965d1ace43f1c0be56f.zip
Merge pull request #7420 from owncloud/cachehooks-first
Manually triger the filecache update hooks before any other hook
Diffstat (limited to 'apps')
-rw-r--r--apps/files/appinfo/app.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php
index 909baca92ea..15a29133789 100644
--- a/apps/files/appinfo/app.php
+++ b/apps/files/appinfo/app.php
@@ -12,13 +12,6 @@ OCP\App::addNavigationEntry(array("id" => "files_index",
OC_Search::registerProvider('OC_Search_Provider_File');
-// cache hooks must be connected before all other apps.
-// since 'files' is always loaded first the hooks need to be connected here
-\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook');
-\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook');
-\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook');
-\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
-
\OCP\BackgroundJob::addRegularTask('\OC\Files\Cache\BackgroundWatcher', 'checkNext');
$templateManager = OC_Helper::getFileTemplateManager();