Skip to content

Commit

Permalink
Merge pull request #43 from integral-learning/dev
Browse files Browse the repository at this point in the history
Release v1.4.7
  • Loading branch information
jtgoltz authored Mar 23, 2022
2 parents d5f2f22 + 698eb32 commit fd5b175
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All important changes to this plugin will be documented in this file.

## [v1.4.7] - 2022-03-23

## Fixed
- Fixed an issue where only participants with default student role were listed on the individual grading settings page. Now every participant with a graded role will be listed.

## [v1.4.6] - 2022-03-11

## Added
Expand Down
4 changes: 3 additions & 1 deletion classes/mumie_grader.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ public function view_grading_table() {
global $PAGE, $CFG;
$output = "";

$gradedroles = array_map('intval', explode(',', $CFG->gradebookroles));

$filterset = new participants_filterset();
$filterset->add_filter(new integer_filter('courseid', filter::JOINTYPE_DEFAULT, [(int)$this->course->id]));
$filterset->add_filter(new integer_filter('roles', filter::JOINTYPE_DEFAULT, [5]));
$filterset->add_filter(new integer_filter('roles', filter::JOINTYPE_DEFAULT, $gradedroles));

require_once($CFG->dirroot . "/mod/mumie/classes/mumie_participants.php");

Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@

defined('MOODLE_INTERNAL') || die;

$plugin->version = 2022031101; // The current module version (Date: YYYYMMDDXX).
$plugin->version = 2022032300; // The current module version (Date: YYYYMMDDXX).
$plugin->component = 'mod_mumie'; // Full name of the plugin (used for diagnostics).
$plugin->requires = 2020061500;
$plugin->release = "v1.4.6";
$plugin->release = "v1.4.7";
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array(
'auth_mumie' => 2021031200,
Expand Down

0 comments on commit fd5b175

Please sign in to comment.