Fix BBCode::expandTags() & Remove AppMockTrait

This commit is contained in:
Philipp 2021-11-28 12:59:42 +01:00
parent 583ce63ac7
commit 4cc36c9b2c
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
6 changed files with 21 additions and 252 deletions

View file

@ -2322,7 +2322,7 @@ class BBCode
break;
case '#':
default:
return $match[1] . '[url=' . 'https://' . DI::baseUrl() . '/search?tag=' . $match[2] . ']' . $match[2] . '[/url]';
return $match[1] . '[url=' . DI::baseUrl() . '/search?tag=' . $match[2] . ']' . $match[2] . '[/url]';
}
}, $body);
}