Quote:
Originally Posted by sailnet
due to a rash of spammers showing up recently and sending PM's to my membrs are they've met their posts count requirements I'd like to extend this mod to also include a minimum number of days that someone must be a forum member before they can send PM's.
can someone give me some guidance as to how to add this code?
thanks in advance.
|
You (of course) need to add a check for days registered wherever the posts are checked. You could do something like:
Code:
$min_days = 3;
$days_registered = floor((TIMENOW - $vbulletin->userinfo['joindate']) / 86400);
Then add "AND ($days_registered >= $min_days)" in the appropriate places. You could also create a new option and use it to set $min_days (or in place of $min_days) instead of using a constant.