TracyJane Posted December 12, 2003 Share Posted December 12, 2003 Hello How would I go about changing the date format from mm/dd/yy to dd/mm/yy the UK version? I have tried doing it in index.php and english.php, but it hasn't worked. Thanks Link to comment Share on other sites More sharing options...
Noobish-n-stuff Posted December 12, 2003 Share Posted December 12, 2003 look in general.php between lines 615 and 650. i believe this is where you need to make your changes. Link to comment Share on other sites More sharing options...
berkedam Posted December 12, 2003 Share Posted December 12, 2003 or in /catalog/engish.php @setlocale(LC_TIME, 'nl_NL.ISO_8859-1'); // NL define('DATE_FORMAT_SHORT', '%d.%m.%Y'); // this is used for strftime() define('DATE_FORMAT_LONG', '%A, %d. %B %Y'); // this is used for strftime() define('DATE_FORMAT', 'd.m.Y'); // this is used for strftime() define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S'); "If you're working on something new, then you are necessarily an amateur." Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.