Quote:
Today at 01:31 AM CRego3D said this in Post #5
can you tell me what you did for the user awaitign moderation ?
|
Sure, I can tell you but then I have to kill you.
----------------------
In showthread.php
----------------------
Replace:
PHP Code:
if (!$forum['allowguestpostview'] && !$bbuserinfo['userid']) {
eval("standarderror(\"".gettemplate("error_noguestviewpost")."\");");
exit;
}
With:
PHP Code:
if (!$forum['allowguestpostview'] && !$bbuserinfo['userid']) {
eval("standarderror(\"".gettemplate("error_noguestviewpost")."\");");
} else if (!$forum['allowguestpostview'] && in_array($bbuserinfo['usergroupid'], array(3, 4))) {
eval("standarderror(\"".gettemplate("error_nowaitviewpost")."\");");
exit;
}
----------------------
New Template: error_nowaitviewpost
----------------------
ADD this to it:
<center>Sorry, users awaiting email confirmation are not allowed to view threads in this forum. You will need to complete the email confirmation first.</center>