mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 16:32:43 +02:00
Merge branch 'MDL-76235' of https://github.com/paulholden/moodle
This commit is contained in:
commit
c6e9959a40
@ -5920,7 +5920,7 @@ function email_should_be_diverted($email) {
|
||||
|
||||
$patterns = array_map('trim', preg_split("/[\s,]+/", $CFG->divertallemailsexcept, -1, PREG_SPLIT_NO_EMPTY));
|
||||
foreach ($patterns as $pattern) {
|
||||
if (preg_match("/$pattern/", $email)) {
|
||||
if (preg_match("/{$pattern}/i", $email)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -3426,6 +3426,7 @@ EOF;
|
||||
'foo@example.com',
|
||||
'test@real.com',
|
||||
'fred.jones@example.com',
|
||||
'Fred.Jones@Example.com',
|
||||
),
|
||||
true,
|
||||
),
|
||||
@ -3435,6 +3436,7 @@ EOF;
|
||||
array(
|
||||
'dev1@dev.com',
|
||||
'fred@example.com',
|
||||
'Fred@Example.com',
|
||||
'fred+verp@example.com',
|
||||
),
|
||||
false,
|
||||
|
Loading…
x
Reference in New Issue
Block a user