Merge pull request #4502 from annando/guid-from-mail

guid creation: Take the hostname from mail addresses for mail posts
2022.09-rc
Hypolite Petovan 2018-02-26 09:36:56 -05:00 zatwierdzone przez GitHub
commit 2b9561a774
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -260,6 +260,12 @@ class Item extends BaseObject
$prefix_host = $parsed['host'];
}
}
// Is it in the format data@host.tld? - Used for mail contacts
if (empty($prefix_host) && !empty($item['author-link']) && strstr($item['author-link'], '@')) {
$mailparts = explode('@', $item['author-link']);
$prefix_host = array_pop($mailparts);
}
}
if (!empty($item['plink'])) {