Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'MDL-61236-master' of git://github.com/farhan6318/moodle
- Loading branch information
Showing
with
3 additions
and
2 deletions.
-
+3
−2
enrol/self/lib.php
|
@@ -1003,8 +1003,9 @@ public function get_welcome_email_contact($sendoption, $context) { |
|
|
// We only use the first user. |
|
|
$i = 0; |
|
|
do { |
|
|
$rusers = get_role_users($croles[$i], $context, true, '', |
|
|
'r.sortorder ASC, ' . $sort, null, '', '', '', '', $sortparams); |
|
|
$allnames = get_all_user_name_fields(true, 'u'); |
|
|
$rusers = get_role_users($croles[$i], $context, true, 'u.id, u.confirmed, u.username, '. $allnames . ', |
|
|
u.email, r.sortorder, ra.id', 'r.sortorder, ra.id ASC, ' . $sort, null, '', '', '', '', $sortparams); |
|
|
$i++; |
|
|
} while (empty($rusers) && !empty($croles[$i])); |
|
|
} |
|
|