From: peter <peter@jean-luc-picard>
Date: Fri, 25 Jan 2019 00:25:06 +0000 (+0100)
Subject: BBCode - fixed code styling
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a505dbbe5ca3d28fe290d51b695abdf85fee7883;p=friendica.git

BBCode - fixed code styling
---

diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php
index f225460645..b710dc13ec 100644
--- a/src/Content/Text/BBCode.php
+++ b/src/Content/Text/BBCode.php
@@ -1370,7 +1370,7 @@ class BBCode extends BaseObject
 		$text = preg_replace("/\[url\](\/[$URLSearchString]*)\[\/url\]/ism", '<a href="'.System::baseUrl().'$1">$1</a>', $text);
 		$text = preg_replace("/\[url\=(\/[$URLSearchString]*)\](.*?)\[\/url\]/ism", '<a href="'.System::baseUrl().'$1">$2</a>', $text);		
 
-        $text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$1</a>', $text);
+		$text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/ism", '<a href="$1" target="_blank">$1</a>', $text);
 		$text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '<a href="$1" target="_blank">$2</a>', $text);
 
 		// Red compatibility, though the link can't be authenticated on Friendica