mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Exclude [attachment] from tag search
This commit is contained in:
parent
f37750d679
commit
d609d70bd2
1 changed files with 1 additions and 1 deletions
|
@ -2355,7 +2355,7 @@ class BBCode
|
|||
DI::profiler()->startRecording('rendering');
|
||||
$ret = [];
|
||||
|
||||
self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img'], function ($string) use (&$ret) {
|
||||
self::performWithEscapedTags($string, ['noparse', 'pre', 'code', 'img', 'attachment'], function ($string) use (&$ret) {
|
||||
// Convert hashtag links to hashtags
|
||||
$string = preg_replace('/#\[url\=([^\[\]]*)\](.*?)\[\/url\]/ism', '#$2 ', $string);
|
||||
|
||||
|
|
Loading…
Reference in a new issue