Fix URL mention regular expression FOR REALZ
This commit is contained in:
parent
51e5cc2ac8
commit
69e944e21a
@ -284,7 +284,9 @@ class OStatusPlugin extends Plugin
|
||||
static function extractUrlMentions($text)
|
||||
{
|
||||
$wmatches = array();
|
||||
$result = preg_match_all('/(?:^|\s+)@('.URL_REGEX_DOMAIN_NAME.'(?:\/\w+)*)/',
|
||||
// In the regexp below we need to match / _before_ URL_REGEX_VALID_PATH_CHARS because it otherwise gets merged
|
||||
// with the TLD before (but / is in URL_REGEX_VALID_PATH_CHARS anyway, it's just its positioning that is important)
|
||||
$result = preg_match_all('/(?:^|\s+)@('.URL_REGEX_DOMAIN_NAME.'(?:\/['.URL_REGEX_VALID_PATH_CHARS.']*)*)/',
|
||||
$text,
|
||||
$wmatches,
|
||||
PREG_OFFSET_CAPTURE);
|
||||
|
Loading…
Reference in New Issue
Block a user