Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 2.7.1, 2.8.1, 2.9
-
Component/s: Gradebook
-
Testing Instructions:
-
Affected Branches:MOODLE_27_STABLE, MOODLE_28_STABLE, MOODLE_29_STABLE
-
Fixed Branches:MOODLE_27_STABLE, MOODLE_28_STABLE
-
Pull from Repository:
-
Pull Master Branch:
MDL-47037-master -
Pull Master Diff URL:
Description
Clicking the "נ" (which sounds like "N") letter in the Hebrew alphabet to filter names starting with "נ" does nothing.
Looking at the code, there is a common mis use of PARAM_ALPHA in the "sifirst" parameter.
/grade/report/grader/index.php L43-44
$graderreportsifirst = optional_param('sifirst', null, PARAM_ALPHA);
|
$graderreportsilast = optional_param('silast', null, PARAM_ALPHA);
|
Should be:
$graderreportsifirst = optional_param('sifirst', null, PARAM_RAW);
|
$graderreportsilast = optional_param('silast', null, PARAM_RAW);
|