mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/10173] Use correct variable, checking for $birthday_year was correct.
PHPBB3-10173
This commit is contained in:
parent
a072526890
commit
6aa2f9e742
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue