Here's a tip how to fix it:
Go to your PhpMyAdmin, select your database, click "signup" table, click "structure" link from top menu.
Edit table field "bdate". Change default date from 0000-00-00 to 1901-01-01
Edit file "include/function_smarty.php" and find the line:
- Code: Select all
if ( $year != '0000') {
Change it to:
- Code: Select all
if ( $year != '0000' && $year !='1901' ) {
This will prevent from displaying "stupid" age if year is "1901" (default, not changed)
Good luck.