diff options
| author | Farhaan Bukhsh <farhaan.bukhsh@gmail.com> | 2019-10-11 23:33:29 +0700 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-30 13:06:29 +0100 |
| commit | cf5d4701dc12ad69d51042b0d7e81e4a54de4bd7 (patch) | |
| tree | 3478806702ca23e43da4ab85db2b924543af8710 /docs | |
| parent | 550357771b592568399eda08556bb2a749da69fe (diff) | |
Fixed #30819 -- Fixed year determination in admin calendar widget for two-digit years.
Two-digit years in the range of [00, 68] are in the current century,
while [69,99] are in the previous century, according to the Open Group
Specification.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/3.1.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt index 16d475b45b..51a0c69ac6 100644 --- a/docs/releases/3.1.txt +++ b/docs/releases/3.1.txt @@ -391,6 +391,10 @@ Miscellaneous options on models in ``django.contrib`` modules that were formerly tuples are now lists. +* The admin calendar widget now handles two-digit years according to the Open + Group Specification, i.e. values between 69 and 99 are mapped to the previous + century, and values between 0 and 68 are mapped to the current century. + .. _deprecated-features-3.1: Features deprecated in 3.1 |
