*blink*
After many hours of trying to figure this out with Cyricx STILL having issues. Mainly with the month part not working properly :| We've gotten it to work with "March" .. all the way up to the end of the month. But when the month after starts. It stops working and lets them register all the way up to December 31, 1988.
This is the code Me and cyricx were using. If someone else could try this and figure it out i'd GREATLY appreciate it.
Basically We have been replacing the code in register_checkdate hook
We had to define $current['day'] = date('d'); because it wasn't in register.php
PHP Code:
$current['day'] = date('d');
if ((($current['year'] - $vbulletin->GPC['year']) < $vbulletin->options['minjoinage']) OR ((($current['year'] - $vbulletin->GPC['year']) == $vbulletin->options['minjoinage']) AND ($vbulletin->GPC['month'] <= $current['month']) AND ($vbulletin->GPC['day'] > $current['day'])))
{
eval(standard_error(fetch_error('underage_registration_denied', $vbulletin->options['minjoinage'])));
}