Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.2, 2.3.1
-
MOODLE_22_STABLE, MOODLE_23_STABLE
-
MOODLE_23_STABLE
-
-
Description
When UI is set to Hebrew (and probably other non English languages) It is not possible to update a grade or set a new grade in the new "Assign" (assignment type) submission form (mod/assign/view.php?id=XX&action=grading).
Changing the following fixes this issue:
moodle2/mod/assign/locallib.php (line 330)
} else if (optional_param('savegrade', null, PARAM_ALPHA)) {
|
change to:
} else if (optional_param('savegrade', null, PARAM_RAW)) {
|
Attachments
Issue Links
- has a non-specific relationship to
-
MDL-41468 Unable to remove a calendar from "Manage Calendar subscriptions" page, When in RTL mode
-
- Closed
-
- has been marked as being related by
-
MDL-35529 System wide, unable to submit an "Intro" Form field If it has only non-English content.
-
- Closed
-
- is duplicated by
-
MDL-35428 New assign module - grading and feedback are not working for Korean language.
-
- Closed
-