]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Text/BBCode.php
Add a couple of cases to DateTimeFormat::fix()
[friendica.git] / src / Content / Text / BBCode.php
index 93d1be2c445b4c4a2430de484b42afec0fc12bf2..43d4127ea99c51bf136283b22657681dd08c3535 100644 (file)
@@ -1009,14 +1009,15 @@ class BBCode
        /**
         * @param string $text A BBCode string
         * @return array Empty array if no share tag is present or the following array, missing attributes end up empty strings:
-        *               - comment: Text before the opening share tag
-        *               - shared : Text inside the share tags
-        *               - author : (Optional) Display name of the shared author
-        *               - profile: (Optional) Profile page URL of the shared author
-        *               - avatar : (Optional) Profile picture URL of the shared author
-        *               - link   : (Optional) Canonical URL of the shared post
-        *               - posted : (Optional) Date the shared post was initially posted ("Y-m-d H:i:s" in GMT)
-        *               - guid   : (Optional) Shared post GUID if any
+        *               - comment   : Text before the opening share tag
+        *               - shared    : Text inside the share tags
+        *               - author    : (Optional) Display name of the shared author
+        *               - profile   : (Optional) Profile page URL of the shared author
+        *               - avatar    : (Optional) Profile picture URL of the shared author
+        *               - link      : (Optional) Canonical URL of the shared post
+        *               - posted    : (Optional) Date the shared post was initially posted ("Y-m-d H:i:s" in GMT)
+        *               - message_id: (Optional) Shared post URI if any
+        *               - guid      : (Optional) Shared post GUID if any
         */
        public static function fetchShareAttributes(string $text): array
        {
@@ -1029,7 +1030,7 @@ class BBCode
                                'link'       => '',
                                'posted'     => '',
                                'guid'       => '',
-                               'message_id' => $matches[2],
+                               'message_id' => trim($matches[2]),
                                'comment'    => trim($matches[1]),
                                'shared'     => '',
                        ];