Include new lines in implicit mention regular expression

This commit is contained in:
Hypolite Petovan 2019-02-13 08:08:46 -05:00
parent e9045dbe09
commit 63f083f6fb
1 changed files with 1 additions and 1 deletions

View File

@ -692,7 +692,7 @@ class Processor
$kept_mentions = [];
// Extract one prepended mention at a time from the body
while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#mi', $body, $matches)) {
while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#mis', $body, $matches)) {
if (!in_array($matches[2], $implicit_mentions) ) {
$kept_mentions[] = $matches[1];
}