Merge branch 'MDL-63677-master' of git://github.com/sarjona/moodle
This commit is contained in:
+1
-4
@@ -382,9 +382,6 @@ $definitions = array(
|
||||
'mode' => cache_store::MODE_SESSION,
|
||||
'simplekeys' => true,
|
||||
'simpledata' => true,
|
||||
'ttl' => 1800,
|
||||
'invalidationevents' => array(
|
||||
'createduser',
|
||||
)
|
||||
'ttl' => 1800
|
||||
),
|
||||
);
|
||||
|
||||
+3
-2
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user