Merge pull request #11545 from annando/url-tag

Don't parse tags in links
This commit is contained in:
Hypolite Petovan 2022-05-21 08:44:49 -04:00 committed by GitHub
commit c4ec80e839
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1952,6 +1952,7 @@ class BBCode
* - #[url=<anything>]<term>[/url]
* - [url=<anything>]#<term>[/url]
*/
self::performWithEscapedTags($text, ['url', 'share'], function ($text) use ($simple_html) {
$text = preg_replace_callback("/(?:#\[url\=[^\[\]]*\]|\[url\=[^\[\]]*\]#)(.*?)\[\/url\]/ism", function($matches) use ($simple_html) {
if ($simple_html == self::ACTIVITYPUB) {
return '<a href="' . DI::baseUrl() . '/search?tag=' . rawurlencode($matches[1])
@ -1963,6 +1964,8 @@ class BBCode
. XML::escape($matches[1]) . '</a>';
}
}, $text);
return $text;
});
// We need no target="_blank" rel="noopener noreferrer" for local links
// convert links start with DI::baseUrl() as local link without the target="_blank" rel="noopener noreferrer" attribute