aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-09-02 13:36:48 +0000
committerChris Smith <toonarmy@phpbb.com>2008-09-02 13:36:48 +0000
commitf2abefeaed267a405ae1ccafba7ce2a52794fadc (patch)
tree41e34e0f0a1dedda5073f8d8cc854b942e080a3f /phpBB/includes/ucp
parent57ec5805df1d396a52d1431903c8174fdb7569ad (diff)
downloadforums-f2abefeaed267a405ae1ccafba7ce2a52794fadc.tar
forums-f2abefeaed267a405ae1ccafba7ce2a52794fadc.tar.gz
forums-f2abefeaed267a405ae1ccafba7ce2a52794fadc.tar.bz2
forums-f2abefeaed267a405ae1ccafba7ce2a52794fadc.tar.xz
forums-f2abefeaed267a405ae1ccafba7ce2a52794fadc.zip
Merge in r8758, r8807, r8808, r8809
git-svn-id: file:///svn/phpbb/trunk@8810 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp')
-rw-r--r--phpBB/includes/ucp/ucp_profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php
index fae48b84fa..782293294e 100644
--- a/phpBB/includes/ucp/ucp_profile.php
+++ b/phpBB/includes/ucp/ucp_profile.php
@@ -418,7 +418,7 @@ class ucp_profile
$now = getdate();
$s_birthday_year_options = '<option value="0"' . ((!$data['bday_year']) ? ' selected="selected"' : '') . '>--</option>';
- for ($i = $now['year'] - 100; $i < $now['year']; $i++)
+ for ($i = $now['year'] - 100; $i <= $now['year']; $i++)
{
$selected = ($i == $data['bday_year']) ? ' selected="selected"' : '';
$s_birthday_year_options .= "<option value=\"$i\"$selected>$i</option>";