Merge pull request #10456 from annando/issue-10454

Quickfix for hashtags in author names in shared posts
2022.09-rc
Tobias Diekershoff 2021-07-02 07:47:27 +02:00 zatwierdzone przez GitHub
commit a0772c91d0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -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;