We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24d2067 commit 5f169f3Copy full SHA for 5f169f3
2 files changed
docs/notes/bugfix-13460.md
@@ -0,0 +1 @@
1
+# 'convert' output is incorrectly formatted
engine/src/date.cpp
@@ -111,7 +111,8 @@ bool MCDateTimeInitialize()
111
g_basic_locale->abbrev_month_names[10]= MCSTR("Nov");
112
g_basic_locale->abbrev_month_names[11]= MCSTR("Dec");
113
114
- g_basic_locale->date_formats[0] = MCSTR("^%#m/%#d/%#y");
+ // SN-2014-09-17: [[ Bug 13460 ]] No hashtag for the year
115
+ g_basic_locale->date_formats[0] = MCSTR("^%#m/%#d/%y");
116
g_basic_locale->date_formats[1] = MCSTR("%a, %b %#d, %#Y");
117
g_basic_locale->date_formats[2] = MCSTR("%A, %B %#d, %#Y");
118
0 commit comments