Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 1.9.3
-
Fix Version/s: 1.9.14
-
Component/s: Roles / Access
-
Labels:None
-
Testing Instructions:
-
Affected Branches:MOODLE_19_STABLE
-
Fixed Branches:MOODLE_19_STABLE
-
Pull from Repository:
Description
This is a very little bug.
in admin/roles/assign.php
$strpotentialusers = get_string('potentialusers', 'role');
$strexistingusers = get_string('existingusers', 'role');
$straction = get_string('assignroles', 'role');
$strroletoassign = get_string('roletoassign', 'role');
$strsearch = get_string('search');
$strshowall = get_string('showall'); <- Here!
$strparticipants = get_string('participants');
$strsearchresults = get_string('searchresults');
Please change
$strshowall = get_string('showall');
to
$strshowall = get_string('showallusers');
since get_string('showall') needs a parameter.
There are no influences in english environment([Show all]), but a strange string is displayed in Japanese environemt .