1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #26092 -- Fixed QuerySet.order_by() regression with an M2M through model.

This commit is contained in:
Anssi Kääriäinen
2016-01-20 11:05:48 +02:00
committed by Tim Graham
parent 2d28144c95
commit ee596888e1
4 changed files with 19 additions and 1 deletions

View File

@@ -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`).