Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.9
-
Fix Version/s: 1.9.1
-
Component/s: Assignment
-
Labels:None
-
Database:Any
-
Affected Branches:MOODLE_19_STABLE
-
Fixed Branches:MOODLE_19_STABLE
Description
The new assignment_showrecentsubmissions preference does control whether assignment submissions are visible in the recent activity block but clicking on "Full report of recent activity..." still displays them.
this line in mod/assignment/lib.php:2539
if (!empty($CFG->assignment_limitrecentsubmissions)) {
should probably read:
if (empty($CFG->assignment_showrecentsubmissions)) {
which would be consistent with the usage on line 2424 in the same file.
Activity
- All
- Comments
- History
- Activity
- Source
- Test Sessions
thanks for the report and patch, fixed in cvs