1

Topic: E-mail address of guests and user info disabled

I have disabled user info in the posts on my forum since they make the forum view somewhat less bloated. However when a guest posts I'd like to see the e-mail address that the guest has filled in, but it doesn't seem to be possible. So I propose a change:

$username = pun_htmlspecialchars($cur_post['username']);

to

                if ($pun_config['o_show_user_info'] != '1' && $cur_post['poster_email'] != '' && !$pun_user['is_guest'])
                        $username = '<a href="mailto:'.$cur_post['poster_email'].'">'.pun_htmlspecialchars($cur_post['username']).'</a>';
                else
                        $username = pun_htmlspecialchars($cur_post['username']);

in viewtopic.php at line 258.