CFDateFormatterSetFormat(formatter, UIDateFormatStringForFormatType(UINoAMPMTimeFormat));
var time = CFDateFormatterCreateStringWithDate(NULL, formatter, now);
document.write('<h1>');
- document.write(time);
+ document.write(id(time));
document.write('</h1>');
CFRelease(time);
CFDateFormatterSetFormat(formatter, UIDateFormatStringForFormatType(UIWeekdayNoYearDateFormat));
var date = CFDateFormatterCreateStringWithDate(NULL, formatter, now);
document.write('<h2>');
- document.write(date);
+ document.write(id(date));
document.write('</h2>');
CFRelease(date);