diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-05-11 11:21:37 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-05-11 11:21:37 +0200 |
commit | 6aa2f9e7422c41193294c871913867ee42dc34a0 (patch) | |
tree | 9c36e1198b932ce1c617b46b66827ba7396c8a3b /phpBB/index.php | |
parent | a072526890a5ebbe363f57f31f9c516a9a416883 (diff) | |
download | forums-6aa2f9e7422c41193294c871913867ee42dc34a0.tar forums-6aa2f9e7422c41193294c871913867ee42dc34a0.tar.gz forums-6aa2f9e7422c41193294c871913867ee42dc34a0.tar.bz2 forums-6aa2f9e7422c41193294c871913867ee42dc34a0.tar.xz forums-6aa2f9e7422c41193294c871913867ee42dc34a0.zip |
[ticket/10173] Use correct variable, checking for $birthday_year was correct.
PHPBB3-10173
Diffstat (limited to 'phpBB/index.php')
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 5d62cb1071..427377a2cd 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -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); } |