The numeric-leading-zeros of the day formats works incorrectly!

Here is a piece of code in a csl file:

<date variable="accessed" prefix="/">
<date-part name="year"/>
<date-part name="month" form="numeric-leading-zeros" prefix="-"/>
<date-part name="day" form="numeric-leading-zeros" prefix="-"/>
</date>

I want to get this format: 2009-03-03
However I got this: 2009-03-3

Can somebody help me to fix this? Thanks!
Sign In or Register to comment.