function bbencode_strip

i have multiple mods who needs the folowing code in bbcode.php
i've added that code but the mods still not work, i use a heavely modded IM140 and also have advance bbcode box installed can someone help me how i can make this code work on IM140and/or adv bbcode box?
- Code: Select all
function bbencode_strip($message, $uid){ $message = strip_tags($message); // url #2 $message = str_replace("[url]","", $message); $message = str_replace("[/url]", "", $message); // url /[url=([a-z0-9-.,?!%*_/]+)](.*?)[/url]/si $message = preg_replace("/[url=([a-z0-9-.,?!%*_/]+)]/si", "", $message); $message = str_replace("[/url]", "", $message); $message = preg_replace("/[.*?]/si", '', $message); $message = preg_replace('/[url]|[/url]/si', '', $message); $message = str_replace('"', "'", $message); return $message; }
i've added that code but the mods still not work, i use a heavely modded IM140 and also have advance bbcode box installed can someone help me how i can make this code work on IM140and/or adv bbcode box?