Log in

View Full Version : Omitting year of birth on profile


eblivion
09-30-2004, 02:42 PM
Is there a way to display a user's date of birth on the Public profile, but omit the year (even if the user entered the year). I only want the month & day to be visible.

eblivion
09-30-2004, 04:21 PM
I figured it out...

In member.php:

After:

$bday = explode('-', $userinfo['birthday']);

I added:

$bday[2] = 0000;