Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-04-12 16:19:45 +0300
committerJoas Schilling <coding@schilljs.com>2017-04-13 12:13:19 +0300
commitf23a36b0a6f4721bc923a952d2644dddfe8b13fa (patch)
tree786e3e887a5827ad5fb4872a55cfb7ac1c585774 /lib/base.php
parent01f3698175694d9994c8ef0bb91745582edf3345 (diff)
Add activities when email or password is changed
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php
index feb54ec0331..1db6b84c5fb 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -727,6 +727,9 @@ class OC {
self::registerAccountHooks();
self::registerSettingsHooks();
+ $settings = new \OC\Settings\Application();
+ $settings->register();
+
//make sure temporary files are cleaned up
$tmpManager = \OC::$server->getTempManager();
register_shutdown_function(array($tmpManager, 'clean'));