Remove extra spaces before closing parentheses in src/

This commit is contained in:
Hypolite Petovan 2019-10-16 08:58:09 -04:00
parent 146646c4d4
commit 5dcf6bfc58
11 changed files with 24 additions and 24 deletions

View file

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