Topic: Small permissions bug
If a forum has absolutely no permissions to post topics or replies (could be an announcement forum where only the administrator is allowed to post) then for guests there is still shown 'You must login or register to post/reply'.
It should be 'Sorry! no permission to post/reply'.
I tried to fix it my modifying the following in viewforum.php (and also in viewtopic.php with ' && $cur_forum['post_replies']'):
else if ($forum_user['is_guest'])
$forum_page['page_post']['posting'] = ...
to
else if ($forum_user['is_guest'] && $cur_forum['post_topics'])
$forum_page['page_post']['posting'] = ...
Hope I made no mistake.
BTW, could you add the attribute autocomplete="off" to the captcha input field in the AntiSpam extension?