Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:function AutoLink($String) {
$String = str_replace(array(""","&"),array('"','&'),$String);
$String = preg_replace(
"/
(?<!<a href=\")
(?<!\")(?<!\">)
((https?|ftp):\/\/)
([\@a-z0-9\x21\x23-\x27\x2a-\x2e\x3a\x3b\/;\x3f-\x7a\x7e\x3d]+)
/msxi",
"<a href=\"$0\" target=\"_blank\" rel=\"nofollow\">$0</a>",
$String);
return $String;
}
1 to 25 of 25