by default , on dolphin 6.0003 the syntax to display shoutbox text is here:
$shout_text = process_smiles( process_line_output( $shout_arr['text'], $oTemplConfig -> maxwordlength) );
if the user enter his email or his website , by default the shoutbox script just will display plain text
example : my email is this_is_my_email@yahoo.com
but if you use this syntax:
$shout_text = process_smiles(html_encode( process_line_output( $shout_arr['text'], $oTemplConfig -> maxwordlength) ) );
the shoutbox scripts will display html format
example: my email is <a href="mailto:this_is_my_email@yahoo.com">this_is_my_email@yahoo.com</a>
and also his website .
the problem with this syntax is
-- when my user type a website address for example http://smansakra.net.tc/andros , it will just format "http://smansakra.net" or just format "http://smansakra.net.tc/a "
you can see my example here:
http://smansakra.jwnmedia.com/smansakra.net.tc/shoutbox.php
look, andros type his personal url but the site address look like split into tow pieces, first piece is successfully formated to rich html, but the other just plain text.
CAN ANYONE HERE HELPME TO FIX THIS?