actually connect the filesystem hooks to the cache updater

remotes/origin/stable5
Robin Appelman 12 years ago
parent 8635699db9
commit 438d3c21f6
  1. 4
      lib/files/filesystem.php

@ -685,4 +685,8 @@ class Filesystem {
\OC_Hook::connect('OC_Filesystem', 'post_delete', 'OC_Filesystem', 'removeETagHook');
\OC_Hook::connect('OC_Filesystem', 'post_rename', 'OC_Filesystem', 'removeETagHook');
\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook');
\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook');
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
\OC_Util::setupFS();

Loading…
Cancel
Save