PDA

View Full Version : Users awaiting confirmation


shaffer
07-03-2002, 05:32 PM
Now that I have the threads locked down from unregistered/not logged in users, is it possible to do the same thing for users awaiting confirmation? Maybe let them view for 2 days then prevent them from viewing the threads until they confirm?

thank you.

Jerry

Logician
07-03-2002, 08:12 PM
edit showthread.php, find:


$bbcodeon=iif($forum[allowbbcode],$ontext,$offtext);


Before that add:


$join_today_dif=mktime (date("H"), date("i"), date("s"), date("m"), date("d")-X, date("Y"));
if ($bbuserinfo[usergroup]==3 AND $bbuserinfo[joindate]<$join_today_dif)
{
show_nopermission();exit;
}


Replace X with the day number you allow them to access threads.

Not tested but should work.. Enjoy.. :)

Logician