Improved detection for a local contact
This commit is contained in:
@@ -453,6 +453,13 @@ class Contact
|
||||
*/
|
||||
public static function isLocal($url)
|
||||
{
|
||||
if (!parse_url($url, PHP_URL_SCHEME)) {
|
||||
$addr_parts = explode('@', $url);
|
||||
if (count($addr_parts) == 2) {
|
||||
return $addr_parts[1] == DI::baseUrl()->getHostname();
|
||||
}
|
||||
}
|
||||
|
||||
return Strings::compareLink(self::getBasepath($url, true), DI::baseUrl());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user