Topic: Hide Email addresses

currently the "Email' link under the user name shows the "mailto:user@domin.com" in the lower left hand corner how would i mask this so it is similar to the profile where it displays "http://domain.com/misc.php?email=2"

Thank You,
Andrew Stueckroth

Re: Hide Email addresses

Never Mind I have found it....

in case anyone would like it here it is...

on line 240ish of viewtopic.php
find:

$user_contacts[] = '<a href="mailto:'.$cur_post['email'].'">'.$lang_common['E-mail'].'</a>';

and replace with

$user_contacts[] = '<a href="misc.php?email='.$cur_post['id'].'">'.$lang_common['E-mail'].'</a>';