Date Format Incorrect When Printing from SharePoint
Exactly like it sounds. I have a document that auto-populates a date 33 days in the future when printed. (Thanks to this thread.) It populates correctly when opened in Acrobat Pro, but when printing directly from SharePoint, it prints today's date like so:

Any ideas how to fix this?
This is the Will Print script:
var d = new Date();
d.setDate(d.getDate()+33);
this.getField("FutureDate").value = util.printd ("dddd, mmmm d, yyyy", d);
