MyBB Community Forums

Full Version: [D] User Profile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
There is a problem with the month displaying twice. (See attachment) I have found it on May and March only, the other months are fine. I've looked at the global.lang.php and it is not misspelled

$l['month_1'] = "January";
$l['month_2'] = "February";
$l['month_3'] = "March";
$l['month_4'] = "April";
$l['month_5'] = "May";
$l['month_6'] = "June";
$l['month_7'] = "July";
$l['month_8'] = "August";
$l['month_9'] = "September";
$l['month_10'] = "October";
$l['month_11'] = "November";
$l['month_12'] = "December";

Anybody have this problem or know of another file the date of birth is grabbing the info from to cause this?

Thank you.
I don't see an attachment..
(2009-03-02, 04:11 AM)Tom Loveric Wrote: [ -> ]I don't see an attachment..

Yeah it didn't post it when I previewed it first before the post. It's there now
Check your date format setting..
(2009-03-02, 04:15 AM)Tom Loveric Wrote: [ -> ]Check your date format setting..

My ACP settings are as follows from the boardsettings/date&time format:
Date Format
F j, Y
Time Format
h:i a
Try this for your date format:
M j, Y
(2009-03-02, 04:23 AM)Tom Loveric Wrote: [ -> ]Try this for your date format:
M j, Y

Yes that is better. Shortened the month display.

Thank you
No problem. Also, if you want an actual day(11th, 20th, 1st, etc.) just do(for the date format):
M jS, Y
.
(2009-03-02, 04:29 AM)Tom Loveric Wrote: [ -> ]No problem. Also, if you want an actual day(11th, 20th, 1st, etc.) just do(for the date format):
M jS, Y
.

Awesome! Thanks again!! Smile
No problem!Smile Glad I could helpBig Grin
Pages: 1 2