diff options
author | Chris Smith <toonarmy@phpbb.com> | 2009-12-11 22:39:13 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2009-12-11 22:39:13 +0000 |
commit | 44b9dfaff5e112f3afede2cc1c84416eb072fc06 (patch) | |
tree | 7191fe41474b5ceab851166abad0f0af2fe737d4 /phpBB | |
parent | f150bb82819349d2bea5b8bd042e078acbe424d9 (diff) | |
download | forums-44b9dfaff5e112f3afede2cc1c84416eb072fc06.tar forums-44b9dfaff5e112f3afede2cc1c84416eb072fc06.tar.gz forums-44b9dfaff5e112f3afede2cc1c84416eb072fc06.tar.bz2 forums-44b9dfaff5e112f3afede2cc1c84416eb072fc06.tar.xz forums-44b9dfaff5e112f3afede2cc1c84416eb072fc06.zip |
permit current year in ACP - UCP changed in r8807 #55115
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10323 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/acp/acp_users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index afca056eb2..4905840e02 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -1416,7 +1416,7 @@ class acp_users $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>"; |