/* Automatyczne tworzenie linków
transfered to PHP-Fusion core by Sebastian (SebaZ) Zaborowski
www.extreme-fusion.pl
*/
$text = ' ' . $text; //dodanie spacji na poczatku
// zamiana tekstu na linki
$text = preg_replace("#(^|[\r\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1\\2", $text);
$text = preg_replace("#(^|[\r\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#is", "\\1\\2", $text);
$text = preg_replace("#(^|[\r\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i", "\\1\\2@\\3", $text);
$text = substr($text, 1); // usuniecie dodanej wczesniej spaacji