-
Bug
-
Resolution: Fixed
-
Minor
-
2.1, 2.2, 2.3
-
MOODLE_21_STABLE, MOODLE_22_STABLE, MOODLE_23_STABLE
-
MOODLE_20_STABLE, MOODLE_21_STABLE, MOODLE_22_STABLE
-
w12_
MDL-32090_m23_groupui -
You get a "404 not found" error when changing language in "Add/remove users" interface of Groups administration in a course.
Problem is caused by a wrong assignation in $PAGE->set_url :
$PAGE->set_url('/groups/members.php', array('id'=>$groupid));
|
To fix the bug :
$PAGE->set_url('/group/members.php', array('group'=>$groupid));
|