allowed_email matching $host instead of $domain

This commit is contained in:
Friendika 2011-03-09 23:35:47 -08:00
parent 2270e73fcd
commit 0578751cc9
1 changed files with 1 additions and 1 deletions

View File

@ -1825,7 +1825,7 @@ function allowed_email($email) {
if(count($allowed)) {
foreach($allowed as $a) {
$pat = strtolower(trim($a));
if(($fnmatch && fnmatch($pat,$host)) || ($pat == $host)) {
if(($fnmatch && fnmatch($pat,$domain)) || ($pat == $domain)) {
$found = true;
break;
}