Try inserting this into main.inc.php:<br /><pre> // ---------------------------<br /> // Convert ssl markup -> html<br /> $Body = eregi_replace("\[ssl\]www([^\[]*)\[/ssl\]","<a href=\"https://\\1\" target=\"_new\">https://\\1</a>",$Body);<br /> $Body = eregi_replace("\[ssl\]([^\[]*)\[/ssl\]","<a href=\"\\1\" target=\"_new\">\\1</a>",$Body);<br /> $Body = preg_replace("/\[ssl=https:\/\/(.*)\]([^\[]*)\[\/ssl\]/","<a href=\"https://\\1\" target=\"_new\">\\2</a>",$Body);<br /> $Body = preg_replace("/\[ssl=(.*)\]([^\[]*)\[\/ssl\]/","<a href=\"https://\\1\" target=\"_new\">\\2</a>",$Body);<br /><br /> // ---------------------------<br /> // Convert ssl markup -> html<br /> $Body = preg_replace("/<a href=\"https:\/\/(.*?)\" target=\"_new\">(.*?)<\/a>/","[ssl=\\1]\\2[/ssl]",$Body);</pre><br /><br />Then just use "ssl" instead of "url" for secure links . [ssl=https://...] and so on...<br /><br />This is untested.<br /><br /><br />Mateo Byler<br />
CruceDeCaminos.com