]> git.mxchange.org Git - friendica.git/commitdiff
Fix optical glitch: Replace multiple newlines when replacing attachments
authorMichael <heluecht@pirati.ca>
Fri, 20 Dec 2019 09:45:34 +0000 (09:45 +0000)
committerMichael <heluecht@pirati.ca>
Fri, 20 Dec 2019 09:45:34 +0000 (09:45 +0000)
src/Content/Text/BBCode.php

index 6d4c3418d07410dd40417c5203ae0328c5d8c821..e5622d14b43e478107345dcfe4f3890313a007d3 100644 (file)
@@ -398,15 +398,15 @@ class BBCode extends BaseObject
         */
        public static function removeAttachment($body, $no_link_desc = false)
        {
-               return preg_replace_callback("/\[attachment (.*)\](.*?)\[\/attachment\]/ism",
+               return preg_replace_callback("/\s*\[attachment (.*)\](.*?)\[\/attachment\]\s*/ism",
                        function ($match) use ($no_link_desc) {
                                $attach_data = self::getAttachmentData($match[0]);
                                if (empty($attach_data['url'])) {
                                        return $match[0];
                                } elseif (empty($attach_data['title']) || $no_link_desc) {
-                                       return '[url]' . $attach_data['url'] . "[/url]\n";
+                                       return "\n[url]" . $attach_data['url'] . "[/url]\n";
                                } else {
-                                       return '[url=' . $attach_data['url'] . ']' . $attach_data['title'] . "[/url]\n";
+                                       return "\n[url=" . $attach_data['url'] . ']' . $attach_data['title'] . "[/url]\n";
                                }
                }, $body);
        }