Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.8.3, 1.9
-
Component/s: Enrolments
-
Labels:None
-
Database:Any
-
Affected Branches:MOODLE_18_STABLE, MOODLE_19_STABLE
-
Fixed Branches:MOODLE_18_STABLE, MOODLE_19_STABLE, MOODLE_20_STABLE
Description
Perhaps this applies too to 1.9 and 1.7. To reproduce in 1.8:
1. Enrol a user in a course with unassignself capability enabled
2. Impersonate the student or login as such student
3. Go to his/her personal profile
4. Click in the "Unenrol me from XXX" button
You get a "Sorry, but you do not currently have permissions to do that (Assign roles to users)" message.
This problem can be resolved by modifying user/view.php or by modifying course/unenrol.php. I've attached a patch for 1.8.1+ that applies the former solution. I you can review...
Thanks in advance ![]()
if i've seen correctly it is also possible, to add in ../course/unenrol.php in line ~30 following things:
old version:
if ($userid) {
new version:
if ($userid && $userid!=$USER->id) {
this checks if you want to unenrol yourself -> ok that's possible, if you want to unenrol somebody else, than you will get a "Sorry, but you .....".