From 49c89023fcc946ed8c81181fabfea164128d8d5a Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Wed, 20 Jul 2011 00:53:28 +0200 Subject: [PATCH] [ticket/8571] Show age as 0 in birthday list when birthday is in the future. PHPBB3-8571 --- phpBB/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/index.php b/phpBB/index.php index 3b58646af0..91cbd326b9 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -99,7 +99,7 @@ if ($config['load_birthdays'] && $config['allow_birthdays']) if ($age = (int) substr($row['user_birthday'], -4)) { - $birthday_list .= ' (' . ($now['year'] - $age) . ')'; + $birthday_list .= ' (' . max(0, $now['year'] - $age) . ')'; } } $db->sql_freeresult($result);