We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efdc66 commit 7d9fa61Copy full SHA for 7d9fa61
public_html/lists/admin/connect.php
@@ -1774,6 +1774,7 @@ function monthName($month, $short = 0)
1774
* j day without leading zero
1775
* F long representation of month
1776
* m 2-digit month with leading zero
1777
+ * n month without leading zero
1778
* M short representation of month
1779
* y 2-digit year
1780
* Y 4-digit year
@@ -1796,6 +1797,7 @@ function formatDate($date, $short = 0)
1796
1797
'F' => monthName($month, $short),
1798
'M' => monthName($month, true),
1799
'm' => $month,
1800
+ 'n' => +$month,
1801
'd' => $day,
1802
'j' => +$day,
1803
);
0 commit comments