Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:return $sReturn;$needle = "/((?<!['|\"])(?:http|ftp|https|telnet):\/\/" .
"[\w\.\;\%\_\/\=\?\-\,\~\!\@\#\$\&\+\'\:\(\)]*)" .
"(\[)?(?(2)([^\]]+))(?(2)\])/xis";
$sReturn = preg_replace_callback($needle,
create_function('$matches',
'if (!empty($matches[3])) {
return "<a href=\'$matches[1]\'>$matches[3]</a>";
} else {
return "<a href=\'$matches[1]\'>$matches[1]</a>";
}'),
$sReturn);1 to 7 of 7