Du suchst einen bestimmten Mod, weißt aber nicht genau wo bzw. ob er überhaupt existiert? Wenn dir dieser Artikelnicht weiterhilft, kannst du hier den von dir gewünschten/gesuchten Mod beschreiben ...
Falls ein Mod-Autor eine der Anfragen hier aufnimmt, um einen neuen Mod zu entwickeln, geht's in [3.0.x] Mods in Entwicklung weiter.
Forumsregeln phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
$error = $cp_data = $cp_error = array();
//-- mod: Prime Birthdate Require -------------------------------------------//
// The user has agreed to the registration terms and we are trying to head to
// the registration form page. We check the birth date, and if it's invalid
// we make them do the terms page again so they can fix it. If it is valid
// and COPPA is required, then we check their age. We initialize $coppa to
// zero so that the original COPPA page will be skipped. We need to assign
// the ERROR field in the template for cases when the user either does not
// enter their birth date or enters an invalid date.
if ($config['allow_birthdays'])
{
$user->add_lang('mods/prime_birthdate');
if ($coppa === false && $config['coppa_enable'])
{
$coppa = 0;
}
if ($agreed && request_var('change_lang', '') === '')
{
if (birthdate_required() && ($result = birthdate_error($bday['date'])) !== false)
{
$error[] = $user->lang[$result];
$agreed = false;
$template->assign_vars(array(
'ERROR' => (sizeof($error)) ? implode('<br />', $error) : '',
));
}
else if (get_age($bday['date']) < COPPA_AGE_CUTOFF && $config['coppa_enable'])
{
$coppa = 1;
}
}
}
//-- end: Prime Birthdate Require -------------------------------------------//
//
if (!$agreed || ($coppa === false && $config['coppa_enable']) || ($coppa && !$config['coppa_enable']))