mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-47227_master' of https://github.com/crazyserver/moodle
This commit is contained in:
commit
cf63799155
@ -35,12 +35,12 @@ function get_selection_data($ufiltering) {
|
||||
|
||||
if ($scount) {
|
||||
if ($scount < MAX_BULK_USERS) {
|
||||
$in = implode(',', $SESSION->bulk_users);
|
||||
$bulkusers = $SESSION->bulk_users;
|
||||
} else {
|
||||
$bulkusers = array_slice($SESSION->bulk_users, 0, MAX_BULK_USERS, true);
|
||||
$in = implode(',', $bulkusers);
|
||||
}
|
||||
$userlist['susers'] = $DB->get_records_select_menu('user', "id IN ($in)", null, 'fullname', 'id,'.$DB->sql_fullname().' AS fullname');
|
||||
list($in, $inparams) = $DB->get_in_or_equal($bulkusers);
|
||||
$userlist['susers'] = $DB->get_records_select_menu('user', "id $in", $inparams, 'fullname', 'id,'.$DB->sql_fullname().' AS fullname');
|
||||
}
|
||||
|
||||
return $userlist;
|
||||
|
Loading…
x
Reference in New Issue
Block a user