mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/10173] Use correct variable, checking for $birthday_year was correct.
PHPBB3-10173
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user