Quote:
Originally Posted by vonedaddy
Is there a way I can limit the amount of posts in a certain time frame someone can post to a particular thread??? In other words say I want to limit a user names bob to only be able to post in the same thread once every day is that possible??
Can that be possible?
|
Sure it's possible.
Add a check with something like this in your newreply.php
$lastpost = $DB_site->query_first("SELECT dateline FROM post WHERE threadid = $thread[threadid] AND userid = $bbuserinfo[userid]");
if (vbdate("Ymd", $lastpost[dateline]) == vbdate("Ymd"))
{
eval(print_standard_error('error_posttoday'));
}
you would have to add an errorphrase "error_posttoday".
Also, enclose the whole thing with a check if it's the forum or thread you want.