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:
- Code: Select all
for ($i = $now['year'] - 100; $i < $now['year']; $i++)
by
- Code: Select all
for ($i = $now['year'] - 100; $i <= $now['year']; $i++)