aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/index.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-05-11 11:21:37 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-05-11 11:21:37 +0200
commit6aa2f9e7422c41193294c871913867ee42dc34a0 (patch)
tree9c36e1198b932ce1c617b46b66827ba7396c8a3b /phpBB/index.php
parenta072526890a5ebbe363f57f31f9c516a9a416883 (diff)
downloadforums-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.php2
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);
}