From: friendica <info@friendica.com>
Date: Wed, 11 Jan 2012 22:03:27 +0000 (-0800)
Subject: fix D* links+text smushed together
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c5f41d8b6c9473b5573e941118d8d8c9e25013dc;p=friendica.git

fix D* links+text smushed together
---

diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php
index e819976a7a..8564d20e35 100644
--- a/include/bb2diaspora.php
+++ b/include/bb2diaspora.php
@@ -19,6 +19,11 @@ function diaspora2bb($s) {
 	$s = Markdown($s);
 	$s = html2bbcode($s);
 //	$s = str_replace('&#42;','*',$s);
+
+	// we seem to get a lot of text smushed together with links from Diaspora.
+	// if it's a url that we haven't already parsed into a bbcode structure, put a space before it.
+  	$s = preg_replace("/([^=])(https?:\/\/)/ism",'$1 $2',$s);
+
     $s = preg_replace("/\[url\=?(.*?)\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/url\]/ism",'[youtube]$2[/youtube]',$s); 
     $s = preg_replace("/\[url\=https?:\/\/www.youtube.com\/watch\?v\=(.*?)\].*?\[\/url\]/ism",'[youtube]$1[/youtube]',$s); 
 	$s = preg_replace("/\[url\=?(.*?)\]https?:\/\/vimeo.com\/([0-9]+)(.*?)\[\/url\]/ism",'[vimeo]$2[/vimeo]',$s);