I have noticed on my print order section in my cart that the date/time is in US format ie. there is an entry that calls up "date_purchased" and places this in the following format %Y-%m-%d %H:%M:%S
I have searched all the text in my online shop and I have located the code i believe is responsible under \includes\classes\nusoap.php
This is in the following entry
Code: Select all
return strftime('%Y-%m-%d %H:%M:%S', $sec) . '.' . sprintf('%06d', $usec);I am not sure if it needs the %H:%M:%S', $sec entry here for anything??? I dont want to cause issues anywhere else...
Code: Select all
return strftime ('%d-%m-%Y %H:%M:%S', $sec);Code: Select all
return strftime ('%d-%m-%Y );Many Thanks,