Bug tracker

This ticket has been moved to our new tracker. Open Ticket PHPBB3-8942 now.

birthday Year in ACP/user administration/profile (fix completed in vcs)

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:
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++) 

Comments / History

Linked ticket with changeset: r10323

Action performed by ToonArmy (Development Team Member) on Dec 11th 2009, 22:39

Changed ticket status from "New" to "Fix completed in SVN"

Action performed by ToonArmy (Development Team Member) on Dec 11th 2009, 22:39

Linked ticket with changeset: r8807

Action performed by ToonArmy (Development Team Member) on Dec 11th 2009, 22:39

Ticket details

Related SVN changesets