Default OSC returns the long date format as "Wednesday 16 July, 2003". That format is a little awkward for us USA store owners. The correct USA format for that would be "Wednesday July 16, 2003"
how to change this? open includes/languages/english.php and at the top, change:
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
to:
define('DATE_FORMAT_LONG', '%A %B %d, %Y'); // this is used for strftime()














