1
0
mirror of https://github.com/django/django.git synced 2025-10-29 00:26:07 +00:00

[1.10.x] Fixed #27063 -- Prevented i18n_patterns() from using too much of the URL as the language.

Backport of a01d887a3a from master
This commit is contained in:
Krzysztof Urbaniak
2016-10-28 11:36:53 +02:00
committed by Tim Graham
parent 62c9894b34
commit a7dabe4216
4 changed files with 12 additions and 1 deletions

View File

@@ -23,3 +23,6 @@ Bugfixes
* Fixed ``QuerySet.bulk_create()`` on PostgreSQL when the number of objects is
a multiple plus one of ``batch_size`` (:ticket:`27385`).
* Prevented ``i18n_patterns()`` from using too much of the URL as the language
to fix a use case for ``prefix_default_language=False`` (:ticket:`27063`).