When generating the shipping notification the variable %order_date is always replaced with 1970-01-01 00:00.

I have corrected it in my installation by changing the following line in function shipping_preview_email($txnid, $preview = null)

from:
"%order_date" => format_date($t['created']),

to:
"%order_date" => format_date($t->created),

Comments

sime’s picture

Status: Active » Fixed

This has been fixed in HEAD

Anonymous’s picture

Status: Fixed » Closed (fixed)