Flex DateFormatter bug, missing January 1970 month name
Thursday, June 18th, 2009Today, while working on a small piece of code I discovered something that appears to be a DateFormatter bug. I was using following DateFormatter:
private var formatter:DateFormatter = new DateFormatter();
…
formatter.formatString = "MMMM";
to display just the month names. I didn’t really care about the year when constructing new Date so I thought I would pick 1970. [...]