-
Improvement
-
Resolution: Fixed
-
Minor
-
2.2.1
-
Any
-
MOODLE_22_STABLE
The user selectors used in various parts of Moodle (enrolments, cohort members, etc.) will not display search results where a the number of results returned by a search is more than 100.
const MAX_USERS_PER_PAGE = 100 is defined in a couple of different places in an some cases this constant isn't even used when checking that the number of search results is less than 100. The constant isn't defined in the user_select_base class, but instead a couple of its sub classes even though the value is the same in all of them. Sometimes instead of referencing the constant theres just a literal magic number 100 (e.g. around line 130 in /enrol/manual/locallib.php). It'd be good if we tidied this up so this value was configured in just one place. I've attached a patch that does this. It might even be worthwhile having the maximum number of users as a configurable setting. In some cases the current value of 100 is a bit limiting.
- duplicates
-
MDL-36395 Search for users has max of 100 results
-
- Closed
-