Merge branch 'MDL-63677-master' of git://github.com/sarjona/moodle

This commit is contained in:
Eloy Lafuente (stronk7)
2019-01-14 23:03:51 +01:00
2 changed files with 4 additions and 6 deletions
+1 -4
View File
@@ -382,9 +382,6 @@ $definitions = array(
'mode' => cache_store::MODE_SESSION,
'simplekeys' => true,
'simpledata' => true,
'ttl' => 1800,
'invalidationevents' => array(
'createduser',
)
'ttl' => 1800
),
);
+3 -2
View File
@@ -126,8 +126,9 @@ function user_create_user($user, $updatepassword = true, $triggerevent = true) {
\core\event\user_created::create_from_userid($newuserid)->trigger();
}
// Purge the associated caches.
cache_helper::purge_by_event('createduser');
// Purge the associated caches for the current user only.
$presignupcache = \cache::make('core', 'presignup');
$presignupcache->purge_current_user();
return $newuserid;
}