]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/PageInfo.php
Merge pull request #11531 from annando/display-polls
[friendica.git] / src / Content / PageInfo.php
index 21f32cd3c38dad350c1f6795595333c6195ec5dc..41ecb3d7fa35a0ec207747a7c174fe9707e51b39 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -257,11 +257,11 @@ class PageInfo
                $body = preg_replace("/([#@!])\[url\=(.*?)\](.*?)\[\/url\]/ism", '', $body);
 
                // Search for pure links
-               preg_match("/\[url\](.*?)\[\/url\]/ism", $body, $matches);
+               preg_match("/\[url\](https?:.*?)\[\/url\]/ism", $body, $matches);
 
                if (!$matches) {
                        // Search for links with descriptions
-                       preg_match("/\[url\=(.*?)\].*?\[\/url\]/ism", $body, $matches);
+                       preg_match("/\[url\=(https?:.*?)\].*?\[\/url\]/ism", $body, $matches);
                }
 
                if (!$matches && $searchNakedUrls) {