summaryrefslogtreecommitdiff
path: root/docs/releases/1.8.5.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-24 11:52:58 -0400
committerTim Graham <timograham@gmail.com>2015-08-28 08:46:26 -0400
commit9607a0404188bbe612f05216f5a82df26f4b4e80 (patch)
tree8f7424a7f42fa21950e4895e0eca201135dfc865 /docs/releases/1.8.5.txt
parent8e631a3175f145dbf3eec269f8e3c59a1520540f (diff)
Fixed #25299 -- Fixed crash with ModelAdmin.list_display value that clashes with a model reverse accessor.
Diffstat (limited to 'docs/releases/1.8.5.txt')
-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 3f1674b979..543e8824be 100644
--- a/docs/releases/1.8.5.txt
+++ b/docs/releases/1.8.5.txt
@@ -13,5 +13,9 @@ Bugfixes
field that is both a foreign and primary key (:ticket:`24951`).
* Fixed a migrations crash with ``GenericForeignKey`` (:ticket:`25040`).
+
* Made ``translation.override()`` clear the overridden language when a
translation isn't initially active (:ticket:`25295`).
+
+* Fixed crash when using a value in ``ModelAdmin.list_display`` that clashed
+ with a reverse field on the model (:ticket:`25299`).