Active
Project:
Alter profile page
Version:
6.x-2.6
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
9 Jan 2010 at 16:01 UTC
Updated:
23 Oct 2011 at 17:56 UTC
can you make the date format thats in the form how at date-time website settings set
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);