MyBB Community Forums

Full Version: Mandatory Birth Date
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I neeeeeed to be able to make my users specify their birthdate. Please help me and walk me through this. I am LOST!
Didn't listen to me last time, I see.

ACP -> Users and Groups -> Custom Profile Fields -> Birth Date(If not already there) -> Required? -> Set to Yes.
Or...

In inc/datahandlers/user.php, find:
else
		{
			// No field is specified, so return an empty string for an unknown birthday
			$user['bday'] = '';
		}
Replace with:
else
		{
			$this->set_error("invalid_birthday");
			return false;
		}