From 7390791d2192068310cd4090632ae98a94d801bc Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 11 Jul 2021 11:11:03 +0000 Subject: [PATCH] Avoid problems with "null" values --- src/Content/Text/BBCode.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 37f650bbe..399e42955 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -1287,11 +1287,11 @@ class BBCode * @return string * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - public static function convertForUriId(int $uriid = 0, string $text = null, int $simple_html = self::INTERNAL) + public static function convertForUriId($uriid, string $text = null, int $simple_html = self::INTERNAL) { $try_oembed = ($simple_html == self::INTERNAL); - return self::convert($text, $try_oembed, $simple_html, false, $uriid); + return self::convert($text, $try_oembed, $simple_html, false, $uriid ?? 0); } /**