allowed_email matching $host instead of $domain
This commit is contained in:
parent
2270e73fcd
commit
0578751cc9
1 changed files with 1 additions and 1 deletions
2
boot.php
2
boot.php
|
@ -1825,7 +1825,7 @@ function allowed_email($email) {
|
||||||
if(count($allowed)) {
|
if(count($allowed)) {
|
||||||
foreach($allowed as $a) {
|
foreach($allowed as $a) {
|
||||||
$pat = strtolower(trim($a));
|
$pat = strtolower(trim($a));
|
||||||
if(($fnmatch && fnmatch($pat,$host)) || ($pat == $host)) {
|
if(($fnmatch && fnmatch($pat,$domain)) || ($pat == $domain)) {
|
||||||
$found = true;
|
$found = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue