
Originally Posted by
wickedklown
Im pretty sure im useing US standard date format, is there a setting for that? or is this set from my server and its settings?
i dont believe that i have any of modualy that mess with dates at all. as far as i know.
i believe that the rest of them do show that time you stated.
why is this happening? somtimes there are 3 of them on an order. and always there is a correct one that shows the true payment data.
any thing you can advise for me?
These bad dates are appareaing on the Order Details page, on the green payment lines, correct? Open admin/super_orders.php. Find this line...
Code:
<td class="paymentContent" align="center"><?php echo zen_datetime_short($so->payment[$a]['posted']); ?></td>
This line and the one directly below it use the zen_datetime_short() function. Remove that function from both lines, so it looks like this...
Code:
<td class="paymentContent" align="center"><?php echo $so->payment[$a]['posted']; ?></td>
<td class="paymentContent" align="center"><?php echo $so->payment[$a]['modified']; ?></td>
Upload the file, look at an order with the offending dates, and tell me what they read as. (Dev note: The dates being displayed are now exactly what is being stored in the DB. By looking at these values we can tell if they are not being stored correctly, or if your shop's coding is at fault.)

Originally Posted by
tiger
YEAY! THANK YOU BLINDSIDE - IT WORKED!

Your help is epically appreciated!
Glad to hear it.
Bookmarks