]> git.mxchange.org Git - friendica.git/commitdiff
Improved handling of empty default languages
authorMichael <heluecht@pirati.ca>
Fri, 12 Jan 2024 09:58:16 +0000 (09:58 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 28 Jan 2024 15:37:43 +0000 (16:37 +0100)
src/Model/Item.php

index f84fcdad8461dd5a0b6e15f2af5b994f84a626c5..f3fab4d965359278960726d0e801bb08fd897121 100644 (file)
@@ -2122,8 +2122,10 @@ class Item
         * @param array   $default
         * @return array
         */
-       public static function getLanguageArray(string $body, int $count, int $uri_id = 0, int $author_id = 0, array $default = ['un' => 1]): array
+       public static function getLanguageArray(string $body, int $count, int $uri_id = 0, int $author_id = 0, array $default = []): array
        {
+               $default = $default ?: ['un' => 1];
+
                $searchtext = BBCode::toSearchText($body, $uri_id);
 
                if ((count(explode(' ', $searchtext)) < 10) && (mb_strlen($searchtext) < 30) && $author_id) {