linkify naked urls when they are at the beginning of the text

This commit is contained in:
Friendika 2011-01-22 05:19:53 -08:00
parent f278d17910
commit 6c0218563f
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ function bbcode($Text) {
// Perform URL Search
$Text = preg_replace("/[^\]\=](https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$1" >$1</a>', $Text);
$Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$2" >$2</a>', $Text);
$Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" >$1</a>', $Text);
$Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" >$2</a>', $Text);