Here’s a better alternative that I would love to see forums implement:
public bool canReply(int user_post_number, int thread_age_days) {
if (thread_age_days > user_post_number)
return false;
return true;
}
Here’s a better alternative that I would love to see forums implement:
public bool canReply(int user_post_number, int thread_age_days) {
if (thread_age_days > user_post_number)
return false;
return true;
}