Merge branch 'MDL-46946-master-reqcusfield' of git://github.com/mudrd8mz/moodle

This commit is contained in:
Eloy Lafuente (stronk7)
2016-09-28 02:12:59 +02:00
10 changed files with 142 additions and 12 deletions
@@ -199,7 +199,7 @@ class check_subscriptions extends \core\task\scheduled_task {
*/
protected function is_user_setup($user) {
if (!isset($this->userssetupcache[$user->id])) {
$this->userssetupcache[$user->id] = !user_not_fully_set_up($user);
$this->userssetupcache[$user->id] = !user_not_fully_set_up($user, true);
}
return $this->userssetupcache[$user->id];
}