]> git.mxchange.org Git - friendica.git/commitdiff
Diaspora internal GUID links are now converted correctly.
authorMichael Vogel <icarus@dabo.de>
Mon, 2 Feb 2015 19:26:05 +0000 (20:26 +0100)
committerMichael Vogel <icarus@dabo.de>
Mon, 2 Feb 2015 19:26:05 +0000 (20:26 +0100)
include/bbcode.php

index c2ebf35e6308b7464359a8af2b3efe36d13628f7..c08c6d4d95682e83e5691e5587cf21603d8b8147 100644 (file)
@@ -664,6 +664,12 @@ function GetProfileUsername($profile, $username, $compact = false, $getnetwork =
        return($username);
 }
 
+function bb_DiasporaLinks($match) {
+       $a = get_app();
+
+       return "[url=".$a->get_baseurl()."/display/".$match[1]."]".$match[2]."[/url]";
+}
+
 function bb_RemovePictureLinks($match) {
        $text = Cache::get($match[1]);
 
@@ -880,6 +886,9 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        else
                $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'[url=$1]$2[/url]',$Text);
 
+       // Handle Diaspora posts
+       $Text = preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", 'bb_DiasporaLinks', $Text);
+
        // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text
        if (!$forplaintext)
                $Text = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1<a href="$2" target="_blank">$2</a>', $Text);