can you make the date format thats in the form how at date-time website settings set

Comments

Babalu’s picture

Title: Date format at member since » Date format at last login

sorry i mean last login

pbm160’s picture

Version: 6.x-2.5 » 6.x-2.6

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!

miccelito’s picture

Try following

In file alterprofilepage.module change line 46

$lastlogintime = strftime('%x', $account->access);

to

$lastlogintime = strftime('%d/%m/%Y', $account->access);