summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarco Fucci <marcofucci@gmail.com>2015-03-26 18:47:07 +0000
committerTim Graham <timograham@gmail.com>2015-09-30 18:38:49 -0400
commit0e2d3b93043676975aa921a70b5faafef02cac5c (patch)
tree86f5ba8e2a235b5016b5b6a60335063d2bbd3b7b /docs
parent07e594bba22caa3f02023d0010ae5a6fb99773f0 (diff)
[1.8.x] Fixed #24505 -- Fixed clash with hidden m2m fields.
Added support for multiple m2m fields with the same 'to' model and with related_name set to '+'. Backport of 4ee08958f154594b538207a53c1d457687b3f7ae from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.5.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.8.5.txt b/docs/releases/1.8.5.txt
index 14893f4a72..b951ff98d8 100644
--- a/docs/releases/1.8.5.txt
+++ b/docs/releases/1.8.5.txt
@@ -52,3 +52,7 @@ Bugfixes
(:ticket:`24921`).
* Fixed the ``manage.py test --keepdb`` option on Oracle (:ticket:`25421`).
+
+* Fixed incorrect queries with multiple many-to-many fields on a model with the
+ same 'to' model and with ``related_name`` set to '+' (:ticket:`24505`,
+ :ticket:`25486`).