[ticket/10173] Use correct variable, checking for $birthday_year was correct.

PHPBB3-10173
This commit is contained in:
Andreas Fischer 2011-05-11 11:21:37 +02:00
parent a072526890
commit 6aa2f9e742

View file

@ -106,7 +106,7 @@ if ($config['load_birthdays'] && $config['allow_birthdays'])
));
// For 3.0 compatibility
$birthday_list[] = $birthday_username . (($birthday_age) ? ' (' . $birthday_age . ')' : '');
$birthday_list[] = $birthday_username . (($birthday_year) ? ' (' . $birthday_age . ')' : '');
}
$db->sql_freeresult($result);
}