Ticket #848 (closed defect: fixed)
[patch] I added 'f' format to date.js
| Reported by: | anonymous | Owned by: | dylan |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Date | Version: | 0.3 |
| Severity: | normal | Keywords: | patch |
| Cc: |
Description
with that format it's maybe to put off "0" ahead numerical month (as for "e" format for day)
into date.js for dojo.date.format:
case "f": // month as a decimal number, a single digit is
// preceded by a space (range ' 1' to '12')
if (padChar == null) { padChar = ""; } return _(dateObject.getMonth()+1); break;
Attachments
Change History
Note: See
TracTickets for help on using
tickets.