From 4cdc416d039c7cfc04aa7bc156dd5a1c737375ed Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 13 Oct 2012 11:02:18 +0200 Subject: [PATCH] [1.4.x] Fixed #19119 -- Corrected default date input formats in docs Thanks henrik@aisti.fi for the report. Backport of 10dc4797ea from master. --- docs/ref/forms/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt index 7ebd495924..6047bcab9b 100644 --- a/docs/ref/forms/fields.txt +++ b/docs/ref/forms/fields.txt @@ -411,7 +411,7 @@ For each field, we describe the default widget used if you don't specify Additionally, if you specify :setting:`USE_L10N=False` in your settings, the following will also be included in the default input formats:: - '%b %m %d', # 'Oct 25 2006' + '%b %d %Y', # 'Oct 25 2006' '%b %d, %Y', # 'Oct 25, 2006' '%d %b %Y', # '25 Oct 2006' '%d %b, %Y', # '25 Oct, 2006'