I'm not sure what you mean.

I tested by using a different browser, and registering as a new user.  Password was sent by email and I was able to login and post.

Duh... thanks,

A better test,

if (($pun_user['g_read_board'] == '0' && !isset($_GET['key']) || $pun_user['is_guest']))
    message($lang_common['No view']);

If I make this an option on the admin panel how do I submit the changes?

This worked for me, use it at your own risk.

Change line 42 of index.php to

$result = $db->query('SELECT c.id AS cid, c.cat_name, f.id AS fid, f.forum_name, f.forum_desc, f.redirect_url, f.moderators, f.num_topics, f.num_posts, f.last_post, f.last_post_id, f.last_poster, t.subject FROM '.$db->prefix.'categories AS c INNER JOIN '.$db->prefix.'forums AS f ON c.id=f.cat_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') left join '.$db->prefix.'topics as t on (f.last_post_id=t.last_post_id) WHERE fp.read_forum IS NULL OR fp.read_forum=1 ORDER BY c.disp_position, c.id, f.disp_position', true) or error('Unable to fetch category/forum list', __FILE__, __LINE__, $db->error());

change line 110 of index.php to

$last_post = '<a href="viewtopic.php?pid='.$cur_forum['last_post_id'].'#p'.$cur_forum['last_post_id'].'">'.$cur_forum['subject'].'</a><br />'.format_time($cur_forum['last_post']).'<br />'.$lang_common['by'].' '.pun_htmlspecialchars($cur_forum['last_poster']);

4

(5 replies, posted in General discussion)

google for hawhaw, it will convert html to wap pages.

I changed line 30 of profile.php to:

if (($pun_user['g_read_board'] == '0' || $pun_user['is_guest']) && !isset($_GET['key']))
    message($lang_common['No view']);

Can permissions like this be handled by mods?

How can I hide a member's profile from un-reggistered users?