Add case insensitive for user email

This commit is contained in:
Jane Adelmann 2022-11-04 17:21:10 +02:00
parent 28a2132625
commit e198855544
No known key found for this signature in database
GPG Key ID: 4CCF39DF30B8AF72
2 changed files with 3 additions and 3 deletions

View File

@ -455,7 +455,7 @@ class plagiarism_pchkorg_api_provider {
*/
public function user_email_to_hash($email) {
// We don't send raw user email to the service.
return hash('sha256', $this->token . $email);
return hash('sha256', $this->token . strtolower($email));
}
/**

View File

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