http://www.icyphoenix.com/viewtopic.php?f=4&t=5454&p=36630#p36630
-----------------------------------
Chaotic
Sat 14 Feb, 2009 10:35

CUSTOMIZATION - How To Change Registration Date Format
-----------------------------------
[b]OPEN:[/b] [i][b]ip_root[/b]/language/[b]your_language[/b]/lang_main_settings.php[/i]

[b]FIND:[/b]

[code linenumbers=false]$lang['JOINED_DATE_FORMAT'] = 'F Y'; // Date format of Joined date, php date() format[/code]

[b]REPLACE WITH:[/b]

[code linenumbers=false]$lang['JOINED_DATE_FORMAT'] = 'M d, Y g:i a'; // Date format of Joined date, php date() format[/code]

This will produce this result:

 [img]http://www.icyphoenix.com/files/images/3295/date.png[/img]

If you would like to remove the exact time a user registered and just keep the Month/Day/Year, try this.

[b]OPEN:[/b] [i][b]ip_root[/b]/language/[b]your_language[/b]/lang_main_settings.php[/i]

[b]FIND:[/b]

[code linenumbers=false]$lang['JOINED_DATE_FORMAT'] = 'F Y'; // Date format of Joined date, php date() format[/code]

[b]REPLACE WITH:[/b]

[code linenumbers=false]$lang['JOINED_DATE_FORMAT'] = 'M d, Y'; // Date format of Joined date, php date() format[/code]

This will produce this result:

 [img]http://www.icyphoenix.com/files/images/3295/date1.png[/img]

For more PHP date formats, please visit: http://us.php.net/date


