Tim Gall - 2013-10-06

Hi,
Try editing the date/time formats in:
faq/include/language/english/_localization.php

If your using a different language than english use that languages localization file instead.

The date formats are at the top:

define('OSF_DATE_FMT_STD', 'd/m/Y');
define('OSF_DATE_FMT_MED', 'Y-m-d h:i:s');
define('OSF_DATE_FMT_LONG', 'F j, Y, g:i a');

for the US that would be something like:

define('OSF_DATE_FMT_STD', 'm/d/Y');
define('OSF_DATE_FMT_MED', 'm-d-Y h:i:s');
define('OSF_DATE_FMT_LONG', 'F j, Y, g:i a');

Hope that helps.