|
|
| Participants: |
Dan Marsden, Martin Dougiamas and Petr Skoda
|
| Security Level: |
None
|
| QA Assignee: |
Petr Skoda
|
| Resolved date: |
05/Nov/08
|
| Affected Branches: |
MOODLE_18_STABLE, MOODLE_19_STABLE, MOODLE_20_STABLE
|
| Fixed Branches: |
MOODLE_18_STABLE, MOODLE_19_STABLE, MOODLE_20_STABLE
|
|
in cron.php the call:
mtrace("Deleted assignment for user $assign->userid from course $assign->courseid");
is misleading it sounds like it is referring to the assignment module, when it is actually a "role assignment" we should change it to something like::
mtrace("Deleted role assignment for user $assign->userid from course $assign->courseid");
|
|
Description
|
in cron.php the call:
mtrace("Deleted assignment for user $assign->userid from course $assign->courseid");
is misleading it sounds like it is referring to the assignment module, when it is actually a "role assignment" we should change it to something like::
mtrace("Deleted role assignment for user $assign->userid from course $assign->courseid"); |
Show » |
|
removing user $assign->userid from course $assign->courseid as they have not accessed the course for over $CFG->longtimenosee days