1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +02:00

some bugfixes.

git-svn-id: file:///svn/phpbb/trunk@8138 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-10-04 18:26:52 +00:00
parent 2cd7f67ed5
commit c208556578
5 changed files with 19 additions and 4 deletions

View File

@@ -316,7 +316,7 @@ class ucp_profile
$validate_array = array_merge($validate_array, array(
'bday_day' => array('num', true, 1, 31),
'bday_month' => array('num', true, 1, 12),
'bday_year' => array('num', true, 1901, gmdate('Y', time())),
'bday_year' => array('num', true, 1901, gmdate('Y', time()) + 50),
));
}