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!
Comments
Comment #1
Babalu commentedsorry i mean last login
Comment #2
pbm160 commentedI 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!
Comment #3
miccelito commentedTry following
In file alterprofilepage.module change line 46
$lastlogintime = strftime('%x', $account->access);
to
$lastlogintime = strftime('%d/%m/%Y', $account->access);