To fix the problem with no message displayed to the user that the post he/she posted a second earlier needs to be accepted by moderator just do this:
1. Open admincp and go to Plugin&Products->Plugin Manager.
2. Find 'Per-Thread Moderation :: Post Saving' plugin and edit it.
3. Find:
Code:
$dataman->set('visible', 0);
and add after it
Code:
$post['visible'] = 0;
The plugin code should look like this
Code:
if (($type == 'reply') AND ($threadinfo['moderated'] == 1) AND (!can_moderate($foruminfo['forumid'])))
{
$dataman->set('visible', 0);
$post['visible'] = 0;
}
This just uses vB build-in code to display the message.