Fix default value for activity option

This commit is contained in:
Jane Adelmann 2022-10-31 15:19:51 +02:00
parent c511214aed
commit 28a2132625
No known key found for this signature in database
GPG Key ID: 4CCF39DF30B8AF72
2 changed files with 5 additions and 3 deletions

View File

@ -361,7 +361,9 @@ class plagiarism_plugin_pchkorg extends plagiarism_plugin {
);
}
$isreportallowed = !$isstudent || $pchkorgconfigmodel->show_report_for_student($cmid) === true;
$isreportallowed = !$isstudent
|| $pchkorgconfigmodel->show_report_for_student($cmid) === true
|| $pchkorgconfigmodel->show_report_for_student($cmid) === null;
// Only for some type of account, method will call a remote HTTP API.
// The API will be called only once, because result is static.

View File

@ -26,9 +26,9 @@ defined('MOODLE_INTERNAL') || die();
if (!isset($plugin)) {
$plugin = new stdClass();
}
$plugin->version = 2022103112;
$plugin->version = 2022103115;
$plugin->requires = 2020061501; // Requires Moodle 3.9 .
$plugin->release = 'v3.12.2';
$plugin->release = 'v3.12.3';
$plugin->component = 'plagiarism_pchkorg';
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array(