Only 18+ can register
How can I modify the config so that only 18+ can register in the forum
thanks
Nams
NO Worries, I figured it out
Edit the forums/config.php page and put in
if ($year < ($current['year'] - 18) OR ($year == ($current['year'] - 18) AND $month <= $current['month']))
{
// just regular adult registration
exec_header_redirect("register.php?$session[sessionurl]do=signup&who=adult&url=$url" . iif($month, "&month=$month") . iif($year, "&year=$year") . iif($day, "&day=$day"));
}
|