-
Bug
-
Resolution: Fixed
-
3.0.6
-
None
-
PHP Environment: 5.2.5
Database: mysql 5.0.45
Hi everybody,
I don't know if it's really a bug, but when you select a member in the acp, and go to his profil, the year for the birthday stop in 2008, but in ucp/profil you can choose until 2009.
It's just one = missing in /includes/acp/acp_users.php
To correct this, just replace in this file:
for ($i = $now['year'] - 100; $i < $now['year']; $i++)
|
by
for ($i = $now['year'] - 100; $i <= $now['year']; $i++)
|