1

Topic: Quick post showing for admin even though turned off

In viewtopic.php,

if ($pun_config['o_quickpost'] == '1' &&
  $is_admmod ||
  (!$pun_user['is_guest'] &&
  ($cur_topic['post_replies'] == '1' || ($cur_topic['post_replies'] == '' && $pun_user['g_post_replies'] == '1')) &&
  $cur_topic['closed'] == '0'))

should probably be

if ($pun_config['o_quickpost'] == '1' &&
  ($is_admmod ||
  (!$pun_user['is_guest'] &&
  ($cur_topic['post_replies'] == '1' || ($cur_topic['post_replies'] == '' && $pun_user['g_post_replies'] == '1')) &&
  $cur_topic['closed'] == '0')))

In other news, thanks from one (so far) very happy customer for sticking with the "simple" idea (not to mention the "readable code"). I'm still ripping out large parts of the feature set since I'm integrating with a lot of other stuff and the target audience wouldn't know what to do with 90% of this stuff, but at least with this board it's doable (I remember trying with phpbb a while ago: major suffering).
Also a suggestion to provide a HTML 4.01 strict version next to the XHTML one. It's easy enough to do a global search/replace on doctype and " />", but it would still be nice.

2

Re: Quick post showing for admin even though turned off

Oh, nm. I see this is fixed already in source: http://dev.punbb.org/changeset/42