Posted by Babalu on January 9, 2010 at 4:01pm
Jump to:
| Project: | Alter profile page |
| Version: | 6.x-2.6 |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
can you make the date format thats in the form how at date-time website settings set
Comments
#1
sorry i mean last login
#2
I have the same issue. Date format for my site is day/month/year. So the "last login" date format M/D/Y in profile is very confusing for users (and for myself!). Can you please add this feature? Or as a special request could you let me know what line of code to add to the module to get this changed. I'm a total newbie for coding. Thanks!
#3
Try following
In file alterprofilepage.module change line 46
$lastlogintime = strftime('%x', $account->access);
to
$lastlogintime = strftime('%d/%m/%Y', $account->access);