Topic: Make it so it doesnt show your ip address

I didn't see any setting for this.  Is there any way to turn that off? Thanks in advance!

Re: Make it so it doesnt show your ip address

As far as I know, it only shows it to administrators (and possibly moderators) if you're worried about it showing the ip address to regular/guest users.

Re: Make it so it doesnt show your ip address

If you mean not to show the user's IP address to admins and moderators, this includes not showing yours then..

Find:

        if ($pun_user['g_id'] < PUN_GUEST)
        {
            $user_info[] = '<dd>IP: <a href="moderate.php?get_host='.$cur_post['id'].'">'.$cur_post['poster_ip'].'</a>';

            if ($cur_post['admin_note'] != '')
                $user_info[] = '<dd>'.$lang_topic['Note'].': <strong>'.pun_htmlspecialchars($cur_post['admin_note']).'</strong>';
        }

And delete it, or just comment it out.

Re: Make it so it doesnt show your ip address

Thanks for the help!