Merge pull request #10456 from annando/issue-10454

Quickfix for hashtags in author names in shared posts
This commit is contained in:
Tobias Diekershoff 2021-07-02 07:47:27 +02:00 committed by GitHub
commit a0772c91d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -953,6 +953,10 @@ class BBCode
*/
public static function fetchShareAttributes($text)
{
// See Issue https://github.com/friendica/friendica/issues/10454
// Hashtags in usernames are expanded to links. This here is a quick fix.
$text = preg_replace('/([@!#])\[url\=.*?\](.*?)\[\/url\]/ism', '$1$2', $text);
$attributes = [];
if (!preg_match("/(.*?)\[share(.*?)\](.*)\[\/share\]/ism", $text, $matches)) {
return $attributes;