forked from GNUsocial/gnu-social
Somewhat simpler regex. Thanks acct:takeshitakenji@gs.kawa-kun.com
This commit is contained in:
parent
c4541d8f5b
commit
95f991cff3
@ -264,7 +264,8 @@ class OStatusPlugin extends Plugin
|
|||||||
static function extractWebfingerIds($text)
|
static function extractWebfingerIds($text)
|
||||||
{
|
{
|
||||||
$wmatches = array();
|
$wmatches = array();
|
||||||
$result = preg_match_all('/(?:^|\s+)@((?:\w+[\w\-\_\.]?)*(?:[\w\-\_\.]*\w+)@'.URL_REGEX_DOMAIN_NAME.')/',
|
// Maybe this should harmonize with lib/nickname.php and Nickname::WEBFINGER_FMT
|
||||||
|
$result = preg_match_all('/(?<!\S)@((?:\w+[\w\-\_\.]*)?\w+@'.URL_REGEX_DOMAIN_NAME.')/',
|
||||||
$text,
|
$text,
|
||||||
$wmatches,
|
$wmatches,
|
||||||
PREG_OFFSET_CAPTURE);
|
PREG_OFFSET_CAPTURE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user