diff options
author | Anssi Kääriäinen <anssi.kaariainen@thl.fi> | 2016-01-20 11:05:48 +0200 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-01-20 19:13:05 -0500 |
commit | ee596888e1149864e7828f5cf63c0eda395744c3 (patch) | |
tree | 253a10367482c35c32fa47fa91bdbaaca7987a02 /docs/releases/1.9.2.txt | |
parent | 2d28144c9519f4e4397c70f045c2b1d31437bf69 (diff) | |
download | django-ee596888e1149864e7828f5cf63c0eda395744c3.tar.gz |
Fixed #26092 -- Fixed QuerySet.order_by() regression with an M2M through model.
Diffstat (limited to 'docs/releases/1.9.2.txt')
-rw-r--r-- | docs/releases/1.9.2.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.9.2.txt b/docs/releases/1.9.2.txt index 71ca0dbea2..71709d0fb8 100644 --- a/docs/releases/1.9.2.txt +++ b/docs/releases/1.9.2.txt @@ -41,3 +41,6 @@ Bugfixes * Fixed CSRF cookie check on POST requests when ``USE_X_FORWARDED_PORT=True`` (:ticket:`26094`). + +* Fixed a ``QuerySet.order_by()`` crash when ordering by a relational field of + a ``ManyToManyField`` ``through`` model (:ticket:`26092`). |