diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index bacfe27bb1..3112ce169f 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1317,10 +1317,8 @@ class BBCode Hook::callAll('bbcode', $text); - $a = DI::app(); - - $text = self::performWithEscapedTags($text, ['code'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $a, $uriid) { - $text = self::performWithEscapedTags($text, ['noparse', 'nobb', 'pre'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $a, $uriid) { + $text = self::performWithEscapedTags($text, ['code'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $uriid) { + $text = self::performWithEscapedTags($text, ['noparse', 'nobb', 'pre'], function ($text) use ($try_oembed, $simple_html, $for_plaintext, $uriid) { /* * preg_match_callback function to replace potential Oembed tags with Oembed content * @@ -1341,534 +1339,66 @@ class BBCode return $return; }; - // Remove the abstract element. It is a non visible element. - $text = self::stripAbstract($text); - - // Line ending normalisation - $text = str_replace("\r\n", "\n", $text); - - // Move new lines outside of tags - $text = preg_replace("#\[(\w*)](\n*)#ism", '$2[$1]', $text); - $text = preg_replace("#(\n*)\[/(\w*)]#ism", '[/$2]$1', $text); - // Extract the private images which use data urls since preg has issues with // large data sizes. Stash them away while we do bbcode conversion, and then put them back // in after we've done all the regex matching. We cannot use any preg functions to do this. - $extracted = self::extractImagesFromItemBody($text); - $text = $extracted['body']; $saved_image = $extracted['images']; - // If we find any event code, turn it into an event. - // After we're finished processing the bbcode we'll - // replace all of the event code with a reformatted version. + // General clean up of the content, for example unneeded blanks and new lines + $text = self::normaliseInput($extracted['body']); - $ev = Event::fromBBCode($text); - - // Replace any html brackets with HTML Entities to prevent executing HTML or script - // Don't use strip_tags here because it breaks [url] search by replacing & with amp - - $text = str_replace("<", "<", $text); - $text = str_replace(">", ">", $text); - - // remove some newlines before the general conversion - $text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1]$2[/share]\n", $text); - $text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "\n[quote$1]$2[/quote]\n", $text); - - // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems - if (!$try_oembed) { - $text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $text); - } - - // Remove linefeeds inside of the table elements. See issue #6799 - $search = [ - "\n[th]", "[th]\n", " [th]", "\n[/th]", "[/th]\n", "[/th] ", - "\n[td]", "[td]\n", " [td]", "\n[/td]", "[/td]\n", "[/td] ", - "\n[tr]", "[tr]\n", " [tr]", "[tr] ", "\n[/tr]", "[/tr]\n", " [/tr]", "[/tr] ", - "\n[hr]", "[hr]\n", " [hr]", "[hr] ", - "\n[attachment ", " [attachment ", "\n[/attachment]", "[/attachment]\n", " [/attachment]", "[/attachment] ", - "[table]\n", "[table] ", " [table]", "\n[/table]", " [/table]", "[/table] ", - " \n", "\t\n", "[/li]\n", "\n[li]", "\n[*]", - ]; - $replace = [ - "[th]", "[th]", "[th]", "[/th]", "[/th]", "[/th]", - "[td]", "[td]", "[td]", "[/td]", "[/td]", "[/td]", - "[tr]", "[tr]", "[tr]", "[tr]", "[/tr]", "[/tr]", "[/tr]", "[/tr]", - "[hr]", "[hr]", "[hr]", "[hr]", - "[attachment ", "[attachment ", "[/attachment]", "[/attachment]", "[/attachment]", "[/attachment]", - "[table]", "[table]", "[table]", "[/table]", "[/table]", "[/table]", - "\n", "\n", "[/li]", "[li]", "[*]", - ]; - do { - $oldtext = $text; - $text = str_replace($search, $replace, $text); - } while ($oldtext != $text); - - // Replace these here only once - $search = ["\n[table]", "[/table]\n"]; - $replace = ["[table]", "[/table]"]; - $text = str_replace($search, $replace, $text); - - // Trim new lines regardless of the system.remove_multiplicated_lines config value - $text = trim($text, "\n"); - - // removing multiplicated newlines - if (DI::config()->get('system', 'remove_multiplicated_lines')) { - $search = [ - "\n\n\n", "[/quote]\n\n", "\n[/quote]", "\n[ul]", "[/ul]\n", "\n[ol]", "[/ol]\n", "\n\n[share ", "[/attachment]\n", - "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n" - ]; - $replace = [ - "\n\n", "[/quote]\n", "[/quote]", "[ul]", "[/ul]", "[ol]", "[/ol]", "\n[share ", "[/attachment]", - "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]" - ]; - do { - $oldtext = $text; - $text = str_replace($search, $replace, $text); - } while ($oldtext != $text); - } - - /// @todo Have a closer look at the different html modes - // Handle attached links or videos - if ($simple_html == self::NPF) { - $text = self::removeAttachment($text); - } elseif (in_array($simple_html, [self::MASTODON_API, self::TWITTER_API, self::ACTIVITYPUB])) { - $text = self::replaceAttachment($text); - } elseif (!in_array($simple_html, [self::INTERNAL, self::EXTERNAL, self::CONNECTORS])) { - $text = self::replaceAttachment($text, true); - } else { - $text = self::convertAttachment($text, $simple_html, $try_oembed, [], $uriid); - } - - $nosmile = strpos($text, '[nosmile]') !== false; - $text = str_replace('[nosmile]', '', $text); - - // Replace non graphical smilies for external posts - if (!$nosmile) { - $text = self::performWithEscapedTags($text, ['url', 'img', 'audio', 'video', 'youtube', 'vimeo', 'share', 'attachment', 'iframe', 'bookmark'], function ($text) use ($simple_html, $for_plaintext) { - return Smilies::replace($text, ($simple_html != self::INTERNAL) || $for_plaintext); - }); - } - - // leave open the possibility of [map=something] - // this is replaced in Item::prepareBody() which has knowledge of the item location - if (strpos($text, '[/map]') !== false) { - $text = preg_replace_callback( - "/\[map\](.*?)\[\/map\]/ism", - function ($match) use ($simple_html) { - return str_replace($match[0], '
' . Map::byLocation($match[1], $simple_html) . '
', $match[0]); - }, - $text - ); - } - - if (strpos($text, '[map=') !== false) { - $text = preg_replace_callback( - "/\[map=(.*?)\]/ism", - function ($match) use ($simple_html) { - return str_replace($match[0], '' . Map::byCoordinates(str_replace('/', ' ', $match[1]), $simple_html) . '
', $match[0]); - }, - $text - ); - } - - if (strpos($text, '[map]') !== false) { - $text = preg_replace("/\[map\]/", '', $text); - } - - // Check for headers - - if ($simple_html == self::INTERNAL) { - //Ensure to always start with", $text); - $heading--; - } - } - } - } else { - $text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '
', $text); - $text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '
', $text); - $text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '
', $text); - $text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '
', $text); - $text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '
', $text); - $text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '
', $text); - } + return self::convertSmileysToHtml($text, $simple_html, $for_plaintext); + }); + + // Now for some more complex BBCode elements (mostly non standard ones) + $text = self::convertAttachmentsToHtml($text, $simple_html, $try_oembed, $uriid); + $text = self::convertMapsToHtml($text, $simple_html); + $text = self::convertQuotesToHtml($text); + $text = self::convertVideoPlatformsToHtml($text, $try_oembed); + $text = self::convertOEmbedToHtml($text, $uriid); + $text = self::convertEventsToHtml($text, $simple_html, $uriid); - // Check for paragraph - $text = preg_replace("(\[p\](.*?)\[\/p\])ism", '
$1
', $text); - - // Check for bold text - $text = preg_replace("(\[b\](.*?)\[\/b\])ism", '$1', $text); - - // Check for Italics text - $text = preg_replace("(\[i\](.*?)\[\/i\])ism", '$1', $text); - - // Check for Underline text - $text = preg_replace("(\[u\](.*?)\[\/u\])ism", '$1', $text); - - // Check for strike-through text - $text = preg_replace("(\[s\](.*?)\[\/s\])ism", '', $text);
- $text = str_replace("\n", '
', $text);
-
- // handle nested lists
- $endlessloop = 0;
-
- while ((((strpos($text, "[/list]") !== false) && (strpos($text, "[list") !== false)) ||
- ((strpos($text, "[/ol]") !== false) && (strpos($text, "[ol]") !== false)) ||
- ((strpos($text, "[/ul]") !== false) && (strpos($text, "[ul]") !== false)) ||
- ((strpos($text, "[/li]") !== false) && (strpos($text, "[li]") !== false))) && (++$endlessloop < 20)) {
- $text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '
', $text); - $text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '
', $text); - $text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '
', $text); - $text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '
', $text); - - $text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '
', $text); - $text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '
', $text); - - $text = str_replace('[hr]', '
', $text);
-
- if (!$for_plaintext) {
- $text = self::performWithEscapedTags($text, ['url', 'img', 'audio', 'video', 'youtube', 'vimeo', 'share', 'attachment', 'iframe', 'bookmark'], function ($text) {
- return preg_replace(Strings::autoLinkRegEx(), '[url]$1[/url]', $text);
- });
- }
-
- // Check for font change text
- $text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "$2", $text);
-
- // Declare the format for [spoiler] layout
- $SpoilerLayout = '' . DI::l10n()->t('Click to open/close') . '
$1$1
$2
$1
'; - - // Check for [quote] text - // handle nested quotes - $endlessloop = 0; - while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote]") !== false) && (++$endlessloop < 20)) { - $text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $text); - } - - // Check for [quote=Author] text - - $t_wrote = DI::l10n()->t('$1 wrote:'); - - // handle nested quotes - $endlessloop = 0; - while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote=") !== false) && (++$endlessloop < 20)) { - $text = preg_replace( - "/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism", - "
" . $t_wrote . "
$2", - $text - ); - } - - - // [img=widthxheight]image source[/img] - $text = preg_replace_callback( - "/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", - function ($matches) use ($simple_html, $uriid) { - if (strpos($matches[3], "data:image/") === 0) { - return $matches[0]; - } - - $matches[3] = self::proxyUrl($matches[3], $simple_html, $uriid); - return "[img=" . $matches[1] . "x" . $matches[2] . "]" . $matches[3] . "[/img]"; - }, - $text - ); - - $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $text); - $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $text); - - $text = preg_replace_callback( - "/\[[iz]mg\=(.*?)\](.*?)\[\/[iz]mg\]/ism", - function ($matches) use ($simple_html, $uriid) { - $matches[1] = self::proxyUrl($matches[1], $simple_html, $uriid); - $alt = htmlspecialchars($matches[2], ENT_COMPAT); - // Fix for Markdown problems with Diaspora, see issue #12701 - if (($simple_html != self::DIASPORA) || strpos($matches[2], '"') === false) { - return ''; - } else { - return ''; - } - }, - $text - ); - - // Images - // [img]pathtoimage[/img] - $text = preg_replace_callback( - "/\[[iz]mg\](.*?)\[\/[iz]mg\]/ism", - function ($matches) use ($simple_html, $uriid) { - if (strpos($matches[1], "data:image/") === 0) { - return $matches[0]; - } - - $matches[1] = self::proxyUrl($matches[1], $simple_html, $uriid); - return "[img]" . $matches[1] . "[/img]"; - }, - $text - ); - - $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '', $text); - $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '', $text); - - $text = self::convertImages($text, $simple_html, $uriid); - - $text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism", '
', - $text - ); - $text = preg_replace( - "/\[audio\](.*?)\[\/audio\]/ism", - '
',
- $text
- );
- } elseif ($try_oembed) {
- // html5 video and audio
- $text = preg_replace(
- "/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4).*?)\[\/video\]/ism",
- '',
- $text
- );
-
- $text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", $try_oembed_callback, $text);
- $text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", $try_oembed_callback, $text);
-
- $text = preg_replace(
- "/\[video\](.*?)\[\/video\]/ism",
- '$1',
- $text
- );
- $text = preg_replace("/\[audio\](.*?)\[\/audio\]/ism", '', $text);
- } else {
- $text = preg_replace(
- "/\[video\](.*?)\[\/video\]/ism",
- '$1',
- $text
- );
- $text = preg_replace(
- "/\[audio\](.*?)\[\/audio\]/ism",
- '$1',
- $text
- );
- }
-
- // Backward compatibility, [iframe] support has been removed in version 2020.12
- $text = preg_replace_callback("/\[(iframe)\](.*?)\[\/iframe\]/ism", [self::class, 'sanitizeLinksCallback'], $text);
- $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '$1', $text);
-
- $text = self::normalizeVideoLinks($text);
-
- // Youtube extensions
- if ($try_oembed && OEmbed::isAllowedURL('https://www.youtube.com/embed/')) {
- $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '', $text);
- } else {
- $text = preg_replace(
- "/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
- 'https://www.youtube.com/watch?v=$1',
- $text
- );
- }
-
- // Vimeo extensions
- if ($try_oembed && OEmbed::isAllowedURL('https://player.vimeo.com/video')) {
- $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '', $text);
- } else {
- $text = preg_replace(
- "/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
- 'https://vimeo.com/$1',
- $text
- );
- }
-
- // oembed tag
- $text = OEmbed::BBCode2HTML($text, $uriid);
-
- // Avoid triple linefeeds through oembed
- $text = str_replace("
", "
", $text);
-
- // If we found an event earlier, strip out all the event code and replace with a reformatted version.
- // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
- // Summary (e.g. title) is required, earlier revisions only required description (in addition to
- // start which is always required). Allow desc with a missing summary for compatibility.
-
- if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
- $sub = Event::getHTML($ev, $simple_html, $uriid);
-
- $text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $text);
- $text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $text);
- $text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $text);
- $text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $text);
- $text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $text);
- $text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $text);
- }
+ // Some simpler non standard elements
+ $text = self::convertEmojisToHtml($text, $simple_html);
+ $text = self::convertCryptToHtml($text);
+ $text = self::convertIFramesToHtml($text);
+ $text = self::convertMailToHtml($text);
+ $text = self::convertAudioVideoToHtml($text, $simple_html, $try_oembed, $try_oembed_callback);
+
+ // At last, some standard elements. URL has to go last,
+ // since some previous conversions use URL elements.
+ $text = self::convertImagesToHtml($text, $simple_html, $uriid);
+ $text = self::convertUrlToHtml($text, $simple_html, $for_plaintext, $try_oembed, $try_oembed_callback);
+ // If the post only consists of an emoji, we display it larger than normal.
if (!$for_plaintext && DI::config()->get('system', 'big_emojis') && ($simple_html != self::DIASPORA) && Smilies::isEmojiPost($text)) {
$text = '' . $text . '';
}
- $text = self::convertUrlToHtml($text, $simple_html, $for_plaintext, $try_oembed, $try_oembed_callback);
+ // Sanitize the created HTML.
+ $text = self::cleanupHtml($text);
- // we may need to restrict this further if it picks up too many strays
- // link acct:user@host to a webfinger profile redirector
+ // This needs to be called after the cleanup, since otherwise some links are invalidated
+ $text = self::convertSharesToHtml($text, $simple_html, $try_oembed, $uriid);
- $text = preg_replace('/acct:([^@]+)@((?!\-)(?:[a-zA-Z\d\-]{0,62}[a-zA-Z\d]\.){1,126}(?!\d+)[a-zA-Z\d]{1,63})/', 'acct:$1@$2', $text);
-
- // Perform MAIL Search
- $text = preg_replace_callback("/\[(mail)\](.*?)\[\/mail\]/ism", [self::class, 'sanitizeLinksCallback'], $text);
- $text = preg_replace("/\[mail\](.*?)\[\/mail\]/", '$1', $text);
- $text = preg_replace("/\[mail\=(.*?)\](.*?)\[\/mail\]/", '$2', $text);
-
- /// @todo What is the meaning of these lines?
- $text = preg_replace('/\[\&\;([#a-z0-9]+)\;\]/', '&$1;', $text);
- $text = preg_replace('/\&\#039\;/', '\'', $text);
-
- // Currently deactivated, it made problems with " inside of alt texts.
- //$text = preg_replace('/\"\;/', '"', $text);
-
- // fix any escaped ampersands that may have been converted into links
- $text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&\;(.*?)\>/ism', '<$1$2=$3&$4>', $text);
-
- // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
- $allowed_src_protocols = ['//', 'http://', 'https://', 'contact/redir/', 'cid:'];
-
- array_walk($allowed_src_protocols, function (&$value) {
- $value = preg_quote($value, '#');
- });
-
- $text = preg_replace(
- '#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
- '<$1$2=""$4 data-original-src="$3" class="invalid-src" title="' . DI::l10n()->t('Invalid source protocol') . '">',
- $text
- );
-
- // sanitize href attributes (only allowlisted protocols URLs)
- // default value for backward compatibility
- $allowed_link_protocols = DI::config()->get('system', 'allowed_link_protocols', []);
-
- // Always allowed protocol even if config isn't set or not including it
- $allowed_link_protocols[] = '//';
- $allowed_link_protocols[] = 'http://';
- $allowed_link_protocols[] = 'https://';
- $allowed_link_protocols[] = 'contact/redir/';
-
- array_walk($allowed_link_protocols, function (&$value) {
- $value = preg_quote($value, '#');
- });
-
- $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
- $text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 data-original-href="$3" class="invalid-href" title="' . DI::l10n()->t('Invalid link protocol') . '">', $text);
-
- // Shared content
- $text = self::convertShare(
- $text,
- function (array $attributes, array $author_contact, $content, $is_quote_share) use ($simple_html) {
- return self::convertShareCallback($attributes, $author_contact, $content, $is_quote_share, $simple_html);
- },
- $uriid
- );
-
- $text = self::interpolateSavedImagesIntoItemBody($uriid, $text, $saved_image);
-
- return $text;
+ // Insert the previously extracted embedded image again.
+ return self::interpolateSavedImagesIntoItemBody($uriid, $text, $saved_image);
}); // Escaped noparse, nobb, pre
// Remove escaping tags and replace new lines that remain
@@ -1918,6 +1448,523 @@ class BBCode
return trim($text);
}
+ private static function normaliseInput(string $text): string
+ {
+ // Remove the abstract element. It is a non visible element.
+ $text = self::stripAbstract($text);
+
+ // Line ending normalisation
+ $text = str_replace("\r\n", "\n", $text);
+
+ // Move new lines outside of tags
+ $text = preg_replace("#\[(\w*)](\n*)#ism", '$2[$1]', $text);
+ $text = preg_replace("#(\n*)\[/(\w*)]#ism", '[/$2]$1', $text);
+
+ // Replace any html brackets with HTML Entities to prevent executing HTML or script
+ // Don't use strip_tags here because it breaks [url] search by replacing & with amp
+
+ $text = str_replace("<", "<", $text);
+ $text = str_replace(">", ">", $text);
+
+ // remove some newlines before the general conversion
+ $text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1]$2[/share]\n", $text);
+ $text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism", "\n[quote$1]$2[/quote]\n", $text);
+
+ // Remove linefeeds inside of the table elements. See issue #6799
+ $search = [
+ "\n[th]", "[th]\n", " [th]", "\n[/th]", "[/th]\n", "[/th] ",
+ "\n[td]", "[td]\n", " [td]", "\n[/td]", "[/td]\n", "[/td] ",
+ "\n[tr]", "[tr]\n", " [tr]", "[tr] ", "\n[/tr]", "[/tr]\n", " [/tr]", "[/tr] ",
+ "\n[hr]", "[hr]\n", " [hr]", "[hr] ",
+ "\n[attachment ", " [attachment ", "\n[/attachment]", "[/attachment]\n", " [/attachment]", "[/attachment] ",
+ "[table]\n", "[table] ", " [table]", "\n[/table]", " [/table]", "[/table] ",
+ " \n", "\t\n", "[/li]\n", "\n[li]", "\n[*]",
+ ];
+ $replace = [
+ "[th]", "[th]", "[th]", "[/th]", "[/th]", "[/th]",
+ "[td]", "[td]", "[td]", "[/td]", "[/td]", "[/td]",
+ "[tr]", "[tr]", "[tr]", "[tr]", "[/tr]", "[/tr]", "[/tr]", "[/tr]",
+ "[hr]", "[hr]", "[hr]", "[hr]",
+ "[attachment ", "[attachment ", "[/attachment]", "[/attachment]", "[/attachment]", "[/attachment]",
+ "[table]", "[table]", "[table]", "[/table]", "[/table]", "[/table]",
+ "\n", "\n", "[/li]", "[li]", "[*]",
+ ];
+ do {
+ $oldtext = $text;
+ $text = str_replace($search, $replace, $text);
+ } while ($oldtext != $text);
+
+ // Replace these here only once
+ $search = ["\n[table]", "[/table]\n"];
+ $replace = ["[table]", "[/table]"];
+ $text = str_replace($search, $replace, $text);
+
+ // Trim new lines regardless of the system.remove_multiplicated_lines config value
+ $text = trim($text, "\n");
+
+ // removing multiplicated newlines
+ if (DI::config()->get('system', 'remove_multiplicated_lines')) {
+ $search = [
+ "\n\n\n", "[/quote]\n\n", "\n[/quote]", "\n[ul]", "[/ul]\n", "\n[ol]", "[/ol]\n", "\n\n[share ", "[/attachment]\n",
+ "\n[h1]", "[/h1]\n", "\n[h2]", "[/h2]\n", "\n[h3]", "[/h3]\n", "\n[h4]", "[/h4]\n", "\n[h5]", "[/h5]\n", "\n[h6]", "[/h6]\n"
+ ];
+ $replace = [
+ "\n\n", "[/quote]\n", "[/quote]", "[ul]", "[/ul]", "[ol]", "[/ol]", "\n[share ", "[/attachment]",
+ "[h1]", "[/h1]", "[h2]", "[/h2]", "[h3]", "[/h3]", "[h4]", "[/h4]", "[h5]", "[/h5]", "[h6]", "[/h6]"
+ ];
+ do {
+ $oldtext = $text;
+ $text = str_replace($search, $replace, $text);
+ } while ($oldtext != $text);
+ }
+
+ return $text;
+ }
+
+ private static function convertEventsToHtml(string $text, int $simple_html, int $uriid): string
+ {
+ // If we find any event code, turn it into an event.
+ // After we're finished processing the bbcode we'll
+ // replace all of the event code with a reformatted version.
+
+ $ev = Event::fromBBCode($text);
+
+ // If we found an event earlier, strip out all the event code and replace with a reformatted version.
+ // Replace the event-start section with the entire formatted event. The other bbcode is stripped.
+ // Summary (e.g. title) is required, earlier revisions only required description (in addition to
+ // start which is always required). Allow desc with a missing summary for compatibility.
+
+ if ((!empty($ev['desc']) || !empty($ev['summary'])) && !empty($ev['start'])) {
+ $sub = Event::getHTML($ev, $simple_html, $uriid);
+
+ $text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism", '', $text);
+ $text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism", '', $text);
+ $text = preg_replace("/\[event\-start\](.*?)\[\/event\-start\]/ism", $sub, $text);
+ $text = preg_replace("/\[event\-finish\](.*?)\[\/event\-finish\]/ism", '', $text);
+ $text = preg_replace("/\[event\-location\](.*?)\[\/event\-location\]/ism", '', $text);
+ $text = preg_replace("/\[event\-id\](.*?)\[\/event\-id\]/ism", '', $text);
+ }
+
+ return $text;
+ }
+
+ private static function convertAttachmentsToHtml(string $text, int $simple_html, bool $try_oembed, int $uriid): string
+ {
+ /// @todo Have a closer look at the different html modes
+ // Handle attached links or videos
+ if ($simple_html == self::NPF) {
+ $text = self::removeAttachment($text);
+ } elseif (in_array($simple_html, [self::MASTODON_API, self::TWITTER_API, self::ACTIVITYPUB])) {
+ $text = self::replaceAttachment($text);
+ } elseif (!in_array($simple_html, [self::INTERNAL, self::EXTERNAL, self::CONNECTORS])) {
+ $text = self::replaceAttachment($text, true);
+ } else {
+ $text = self::convertAttachment($text, $simple_html, $try_oembed, [], $uriid);
+ }
+
+ return $text;
+ }
+
+ private static function convertMapsToHtml(string $text, int $simple_html): string
+ {
+ // leave open the possibility of [map=something]
+ // this is replaced in Item::prepareBody() which has knowledge of the item location
+ if (strpos($text, '[/map]') !== false) {
+ $text = preg_replace_callback(
+ "/\[map\](.*?)\[\/map\]/ism",
+ function ($match) use ($simple_html) {
+ return str_replace($match[0], '
' . Map::byLocation($match[1], $simple_html) . '
', $match[0]); + }, + $text + ); + } + + if (strpos($text, '[map=') !== false) { + $text = preg_replace_callback( + "/\[map=(.*?)\]/ism", + function ($match) use ($simple_html) { + return str_replace($match[0], '' . Map::byCoordinates(str_replace('/', ' ', $match[1]), $simple_html) . '
', $match[0]); + }, + $text + ); + } + + if (strpos($text, '[map]') !== false) { + $text = preg_replace("/\[map\]/", '', $text); + } + + return $text; + } + + private static function convertHeaderToHtml(string $text, int $simple_html): string + { + // Check for headers + + if ($simple_html == self::INTERNAL) { + //Ensure to always start with", $text); + $heading--; + } + } + } + } else { + $text = preg_replace("(\[h1\](.*?)\[\/h1\])ism", '
', $text); + $text = preg_replace("(\[h2\](.*?)\[\/h2\])ism", '
', $text); + $text = preg_replace("(\[h3\](.*?)\[\/h3\])ism", '
', $text); + $text = preg_replace("(\[h4\](.*?)\[\/h4\])ism", '
', $text); + $text = preg_replace("(\[h5\](.*?)\[\/h5\])ism", '
', $text); + $text = preg_replace("(\[h6\](.*?)\[\/h6\])ism", '
', $text);
+ }
+
+ return $text;
+ }
+
+ private static function convertEmojisToHtml(string $text, int $simple_html): string
+ {
+ // Mastodon Emoji (internal tag, do not document for users)
+ if ($simple_html == self::MASTODON_API) {
+ $text = preg_replace("(\[emoji=(.*?)](.*?)\[/emoji])ism", '$2', $text);
+ } else {
+ $text = preg_replace("(\[emoji=(.*?)](.*?)\[/emoji])ism", '', $text);
+ }
+ return $text;
+ }
+
+ private static function convertStylesToHtml(string $text, int $simple_html): string
+ {
+ // Markdown is designed to pass through HTML elements that it can't handle itself,
+ // so that the other system would parse the original HTML element.
+ // But Diaspora has chosen not to do this and doesn't parse HTML elements.
+ // So we need to make some changes here.
+ if ($simple_html == BBCode::DIASPORA) {
+ $elements = ['big', 'small'];
+ foreach ($elements as $bbcode) {
+ $text = preg_replace("(\[" . $bbcode . "\](.*?)\[\/" . $bbcode . "\])ism", '$1', $text);
+ }
+
+ $elements = ['del' => 's', 'ins' => 'em', 'kbd' => 'code', 'mark' => 'strong',
+ 'samp' => 'code', 'u' => 'em', 'var' => 'em'];
+ foreach ($elements as $bbcode => $html) {
+ $text = preg_replace("(\[" . $bbcode . "\](.*?)\[\/" . $bbcode . "\])ism", '<' . $html . '>$1' . $html . '>', $text);
+ }
+ }
+
+ // Several easy to replace HTML elements
+ // @todo add the new elements to the documentation by the end of 2024 so that most systems will support them.
+ $elements = ['b', 'del', 'em', 'i', 'ins', 'kbd', 'mark',
+ 's', 'samp', 'small', 'strong', 'sub', 'sup', 'u', 'var'];
+ foreach ($elements as $element) {
+ $text = preg_replace("(\[" . $element . "\](.*?)\[\/" . $element . "\])ism", '<' . $element . '>$1' . $element . '>', $text);
+ }
+
+ $text = preg_replace("(\[big\](.*?)\[\/big\])ism", "$1", $text);
+
+ // Check for over-line text
+ $text = preg_replace("(\[o\](.*?)\[\/o\])ism", '$1', $text);
+
+ // Check for colored text
+ $text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])ism", "$2", $text);
+
+ // Check for sized text
+ // [size=50] --> font-size: 50px (with the unit).
+ if ($simple_html != self::DIASPORA) {
+ $text = preg_replace("(\[size=(\d*?)\](.*?)\[\/size\])ism", '$2', $text);
+ $text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", '$2', $text);
+ } else {
+ // Issue 2199: Diaspora doesn't interpret the construct above, nor the or element
+ $text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])ism", "$2", $text);
+ }
+
+ // Check for centered text
+ $text = preg_replace("(\[center\](.*?)\[\/center\])ism", '
', $text);
+ $text = str_replace("\n", '
', $text);
+
+ // Check for font change text
+ $text = preg_replace("/\[font=(.*?)\](.*?)\[\/font\]/sm", "$2", $text);
+
+ return $text;
+ }
+
+ private static function convertTablesToHtml(string $text): string
+ {
+ $text = preg_replace("/\[th\](.*?)\[\/th\]/sm", '
', $text); + + $text = preg_replace("/\[table border=1\](.*?)\[\/table\]/sm", '
', $text); + $text = preg_replace("/\[table border=0\](.*?)\[\/table\]/sm", '
', $text); + + return $text; + } + + private static function convertListsToHtml(string $text): string + { + // handle nested lists + $endlessloop = 0; + + while ((((strpos($text, "[/list]") !== false) && (strpos($text, "[list") !== false)) || + ((strpos($text, "[/ol]") !== false) && (strpos($text, "[ol]") !== false)) || + ((strpos($text, "[/ul]") !== false) && (strpos($text, "[ul]") !== false)) || + ((strpos($text, "[/li]") !== false) && (strpos($text, "[li]") !== false))) && (++$endlessloop < 20)) { + $text = preg_replace("/\[list\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[list=\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[list=1\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[list=((?-i)i)\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[list=((?-i)I)\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[list=((?-i)a)\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[list=((?-i)A)\](.*?)\[\/list\]/ism", '
', $text); + $text = preg_replace("/\[ul\](.*?)\[\/ul\]/ism", '
', $text); + $text = preg_replace("/\[ol\](.*?)\[\/ol\]/ism", '
', $text); + $text = preg_replace("/\[li\](.*?)\[\/li\]/ism", '
$1
', $text); + // Check for paragraph + return str_replace('[hr]', '', $text); + } + + private static function convertSmileysToHtml(string $text, int $simple_html, bool $for_plaintext): string + { + if (strpos($text, '[nosmile]') !== false) { + $text = str_replace('[nosmile]', '', $text); + return $text; + } + + return Smilies::replace($text, ($simple_html != self::INTERNAL) || $for_plaintext); + } + + private static function convertQuotesToHtml(string $text): string + { + // Declare the format for [quote] layout + $QuoteLayout = '
$1
'; + + // Check for [quote] text + // handle nested quotes + $endlessloop = 0; + while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote]") !== false) && (++$endlessloop < 20)) { + $text = preg_replace("/\[quote\](.*?)\[\/quote\]/ism", "$QuoteLayout", $text); + } + + // Check for [quote=Author] text + + $t_wrote = DI::l10n()->t('$1 wrote:'); + + // handle nested quotes + $endlessloop = 0; + while ((strpos($text, "[/quote]") !== false) && (strpos($text, "[quote=") !== false) && (++$endlessloop < 20)) { + $text = preg_replace( + "/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism", + "
" . $t_wrote . "
$2", + $text + ); + } + + return $text; + } + + private static function convertImagesToHtml(string $text, int $simple_html, int $uriid): string + { + // [img=widthxheight]image source[/img] + $text = preg_replace_callback( + "/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", + function ($matches) use ($simple_html, $uriid) { + if (strpos($matches[3], "data:image/") === 0) { + return $matches[0]; + } + + $matches[3] = self::proxyUrl($matches[3], $simple_html, $uriid); + return "[img=" . $matches[1] . "x" . $matches[2] . "]" . $matches[3] . "[/img]"; + }, + $text + ); + + $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $text); + $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $text); + + $text = preg_replace_callback( + "/\[[iz]mg\=(.*?)\](.*?)\[\/[iz]mg\]/ism", + function ($matches) use ($simple_html, $uriid) { + $matches[1] = self::proxyUrl($matches[1], $simple_html, $uriid); + $alt = htmlspecialchars($matches[2], ENT_COMPAT); + // Fix for Markdown problems with Diaspora, see issue #12701 + if (($simple_html != self::DIASPORA) || strpos($matches[2], '"') === false) { + return ''; + } else { + return ''; + } + }, + $text + ); + + // Images + // [img]pathtoimage[/img] + $text = preg_replace_callback( + "/\[[iz]mg\](.*?)\[\/[iz]mg\]/ism", + function ($matches) use ($simple_html, $uriid) { + if (strpos($matches[1], "data:image/") === 0) { + return $matches[0]; + } + + $matches[1] = self::proxyUrl($matches[1], $simple_html, $uriid); + return "[img]" . $matches[1] . "[/img]"; + }, + $text + ); + + $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '', $text); + $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '', $text); + + $text = self::convertImages($text, $simple_html, $uriid); + + return $text; + } + + private static function convertCryptToHtml(string $text): string + { + $text = preg_replace("/\[crypt\](.*?)\[\/crypt\]/ism", '
', + $text + ); + $text = preg_replace( + "/\[audio\](.*?)\[\/audio\]/ism", + '
',
+ $text
+ );
+ } elseif ($try_oembed) {
+ // html5 video and audio
+ $text = preg_replace(
+ "/\[video\](.*?\.(ogg|ogv|oga|ogm|webm|mp4).*?)\[\/video\]/ism",
+ '',
+ $text
+ );
+
+ $text = preg_replace_callback("/\[video\](.*?)\[\/video\]/ism", $try_oembed_callback, $text);
+ $text = preg_replace_callback("/\[audio\](.*?)\[\/audio\]/ism", $try_oembed_callback, $text);
+
+ $text = preg_replace("/\[video\](.*?)\[\/video\]/ism", '[url]$1[/url]', $text);
+ $text = preg_replace("/\[audio\](.*?)\[\/audio\]/ism", '', $text);
+ } else {
+ $text = preg_replace("/\[video\](.*?)\[\/video\]/ism", '[url]$1[/url]', $text);
+ $text = preg_replace("/\[audio\](.*?)\[\/audio\]/ism", '[url]$1[/url]', $text);
+ }
+ return $text;
+ }
+
+ private static function convertIFramesToHtml(string $text): string
+ {
+ // Backward compatibility, [iframe] support has been removed in version 2020.12
+ $text = preg_replace_callback("/\[(iframe)\](.*?)\[\/iframe\]/ism", [self::class, 'sanitizeLinksCallback'], $text);
+ $text = preg_replace("/\[iframe\](.*?)\[\/iframe\]/ism", '[url]$1[/url]', $text);
+
+ return $text;
+ }
+
+ private static function convertVideoPlatformsToHtml(string $text, bool $try_oembed): string
+ {
+ $a = DI::app();
+ $text = self::normalizeVideoLinks($text);
+
+ // Youtube extensions
+ if ($try_oembed && OEmbed::isAllowedURL('https://www.youtube.com/embed/')) {
+ $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '', $text);
+ } else {
+ $text = preg_replace("/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism", '[url]https://www.youtube.com/watch?v=$1[/url]', $text);
+ }
+
+ // Vimeo extensions
+ if ($try_oembed && OEmbed::isAllowedURL('https://player.vimeo.com/video')) {
+ $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '', $text);
+ } else {
+ $text = preg_replace("/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism", '[url]https://vimeo.com/$1[/url]', $text);
+ }
+ return $text;
+ }
+
+ private static function convertOEmbedToHtml(string $text, int $uriid): string
+ {
+ // oembed tag
+ $text = OEmbed::BBCode2HTML($text, $uriid);
+
+ // Avoid triple linefeeds through oembed
+ $text = str_replace("
", "
", $text);
+
+ return $text;
+ }
+
private static function convertUrlToHtml(string $text, int $simple_html, bool $for_plaintext, bool $try_oembed, \Closure $try_oembed_callback): string
{
$text = preg_replace_callback("/\[(url)\](.*?)\[\/url\]/ism", [self::class, 'sanitizeLinksCallback'], $text);
@@ -2046,7 +2093,10 @@ class BBCode
$text = preg_replace("/\[url\=(" . preg_quote(DI::baseUrl(), '/') . ".*?)\](.*?)\[\/url\]/ism", '$2', $text);
$text = preg_replace("/\[url\=(.*?)\](.*?)\[\/url\]/ism", '$2', $text);
- return $text;
+
+ // we may need to restrict this further if it picks up too many strays
+ // link acct:user@host to a webfinger profile redirector
+ return preg_replace('/acct:([^@]+)@((?!\-)(?:[a-zA-Z\d\-]{0,62}[a-zA-Z\d]\.){1,126}(?!\d+)[a-zA-Z\d]{1,63})/', 'acct:$1@$2', $text);
}
private static function escapeUrl(string $url): string
@@ -2088,6 +2138,78 @@ class BBCode
return $text;
}
+ private static function convertMailToHtml(string $text): string
+ {
+ $text = preg_replace_callback("/\[(mail)\](.*?)\[\/mail\]/ism", [self::class, 'sanitizeLinksCallback'], $text);
+ $text = preg_replace("/\[mail\](.*?)\[\/mail\]/", '$1', $text);
+ $text = preg_replace("/\[mail\=(.*?)\](.*?)\[\/mail\]/", '$2', $text);
+ return $text;
+ }
+
+ private static function convertSharesToHtml(string $text, int $simple_html, bool $try_oembed, int $uriid): string
+ {
+ // Shared content
+ // when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
+ if (!$try_oembed) {
+ $text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism", "\n[share$1$2]$3[/share]", $text);
+ }
+
+ $text = self::convertShare(
+ $text,
+ function (array $attributes, array $author_contact, $content, $is_quote_share) use ($simple_html) {
+ return self::convertShareCallback($attributes, $author_contact, $content, $is_quote_share, $simple_html);
+ },
+ $uriid
+ );
+
+ return $text;
+ }
+
+ private static function cleanupHtml(string $text): string
+ {
+ /// @todo What is the meaning of these lines?
+ $text = preg_replace('/\[\&\;([#a-z0-9]+)\;\]/', '&$1;', $text);
+ $text = preg_replace('/\&\#039\;/', '\'', $text);
+
+ // Currently deactivated, it made problems with " inside of alt texts.
+ //$text = preg_replace('/\"\;/', '"', $text);
+
+ // fix any escaped ampersands that may have been converted into links
+ $text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&\;(.*?)\>/ism', '<$1$2=$3&$4>', $text);
+
+ // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
+ $allowed_src_protocols = ['//', 'http://', 'https://', 'contact/redir/', 'cid:'];
+
+ array_walk($allowed_src_protocols, function (&$value) {
+ $value = preg_quote($value, '#');
+ });
+
+ $text = preg_replace(
+ '#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
+ '<$1$2=""$4 data-original-src="$3" class="invalid-src" title="' . DI::l10n()->t('Invalid source protocol') . '">',
+ $text
+ );
+
+ // sanitize href attributes (only allowlisted protocols URLs)
+ // default value for backward compatibility
+ $allowed_link_protocols = DI::config()->get('system', 'allowed_link_protocols', []);
+
+ // Always allowed protocol even if config isn't set or not including it
+ $allowed_link_protocols[] = '//';
+ $allowed_link_protocols[] = 'http://';
+ $allowed_link_protocols[] = 'https://';
+ $allowed_link_protocols[] = 'contact/redir/';
+
+ array_walk($allowed_link_protocols, function (&$value) {
+ $value = preg_quote($value, '#');
+ });
+
+ $regex = '#<([^>]*?)(href)="(?!' . implode('|', $allowed_link_protocols) . ')(.*?)"(.*?)>#ism';
+ $text = preg_replace($regex, '<$1$2="javascript:void(0)"$4 data-original-href="$3" class="invalid-href" title="' . DI::l10n()->t('Invalid link protocol') . '">', $text);
+
+ return $text;
+ }
+
/**
* Strips the "abstract" tag from the provided text
*
diff --git a/src/Content/Text/HTML.php b/src/Content/Text/HTML.php
index fd4a4b1d24..209b12eec4 100644
--- a/src/Content/Text/HTML.php
+++ b/src/Content/Text/HTML.php
@@ -253,13 +253,12 @@ class HTML
self::tagToBBCode($doc, 'span', ['class' => 'type-link'], '[class=type-link]', '[/class]');
self::tagToBBCode($doc, 'span', ['class' => 'type-video'], '[class=type-video]', '[/class]');
- self::tagToBBCode($doc, 'strong', [], '[b]', '[/b]');
- self::tagToBBCode($doc, 'em', [], '[i]', '[/i]');
- self::tagToBBCode($doc, 'b', [], '[b]', '[/b]');
- self::tagToBBCode($doc, 'i', [], '[i]', '[/i]');
- self::tagToBBCode($doc, 'u', [], '[u]', '[/u]');
- self::tagToBBCode($doc, 's', [], '[s]', '[/s]');
- self::tagToBBCode($doc, 'del', [], '[s]', '[/s]');
+ $elements = ['b', 'del', 'em', 'i', 'ins', 'kbd', 'mark',
+ 's', 'samp', 'strong', 'sub', 'sup', 'u', 'var'];
+ foreach ($elements as $element) {
+ self::tagToBBCode($doc, $element, [], '[' . $element . ']', '[/' . $element . ']');
+ }
+
self::tagToBBCode($doc, 'strike', [], '[s]', '[/s]');
self::tagToBBCode($doc, 'big', [], "[size=large]", "[/size]");
diff --git a/tests/src/Factory/Api/Twitter/DirectMessageTest.php b/tests/src/Factory/Api/Twitter/DirectMessageTest.php
index 4e9d94cafb..03f15f55e0 100644
--- a/tests/src/Factory/Api/Twitter/DirectMessageTest.php
+++ b/tests/src/Factory/Api/Twitter/DirectMessageTest.php
@@ -67,7 +67,7 @@ class DirectMessageTest extends FixtureTest
->toArray();
self::assertEquals('item_title', $directMessage['title']);
- self::assertEquals('item_body', $directMessage['text']);
+ self::assertEquals('item_body', $directMessage['text']);
}
/**
diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po
index 9fa16e1e5b..9955eab35b 100644
--- a/view/lang/C/messages.po
+++ b/view/lang/C/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 2024.06-dev\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-04-07 16:31+0000\n"
+"POT-Creation-Date: 2024-04-13 11:02+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME