]> git.mxchange.org Git - friendica.git/commitdiff
Fixes:
authorRoland Häder <roland@mxchange.org>
Sun, 3 Jul 2022 12:43:45 +0000 (14:43 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 3 Jul 2022 12:45:12 +0000 (14:45 +0200)
"Argument 1 passed to Friendica\Content\Text\BBCode::toPlaintext() must be of the type string, null given, called in /var/www/.../htdocs/mod/display.php on line 305"

mod/display.php
src/Content/Text/BBCode.php

index cc594d78815e0b74e77f49f56dbbfaf942f9094c..ed2c9ef0f7886e4c19e77422159a16a3a668e422 100644 (file)
@@ -302,7 +302,7 @@ function display_content(App $a, $update = false, $update_uid = 0)
 
        // Preparing the meta header
        $description = trim(BBCode::toPlaintext($item['body']));
-       $title = trim(BBCode::toPlaintext($item['title']));
+       $title = trim(BBCode::toPlaintext($item['title'] ?? ''));
        $author_name = $item['author-name'];
 
        $image = DI::baseUrl()->remove($item['author-avatar']);
index d82ec39ec218f656d1b528d02d18807ccacf32ac..7bb65b698f885d637ee0fa0cfba9bd4c45ec0e31 100644 (file)
@@ -424,7 +424,6 @@ class BBCode
         *
         * @param string  $body
         * @param boolean $no_link_desc No link description
-        *
         * @return string with replaced body
         */
        public static function removeAttachment(string $body, bool $no_link_desc = false): string
@@ -449,7 +448,6 @@ class BBCode
         *
         * @param string $text
         * @param bool $keep_urls Whether to keep URLs in the resulting plaintext
-        *
         * @return string
         */
        public static function toPlaintext(string $text, bool $keep_urls = true): string