Quote:
Originally Posted by yaworski
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.
|
Thanks for this! It will be good if I decide to try re-installing this mod.
I really could use this mod, but my forum started acting wonkey after installing it. I saw two things: 1) users in one of my usergroups suddenly seemed to have access to private forums

and 2) linking to old existing threads started giving "thread not found" messages. It was weird because the threads ARE there and the links SHOULD have worked.
It may not have had anything to do with this mod, but it coincided with installation so I've just uninstalled it for now and will try again later if I find that I really need it.
Thanks again.