summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPaulo <commonzenpython@gmail.com>2017-06-09 20:54:10 -0400
committerTim Graham <timograham@gmail.com>2017-06-12 21:22:53 -0400
commit927d9b51fee2442280ae975b21b98b5a705c4b17 (patch)
treec89204637e4260b188a29982a1647c7179509547 /docs
parent7fb148a638044e96fea9996115deb334992ec072 (diff)
[1.11.x] Fixed #27967 -- Fixed KeyError in admin's inline form with inherited non-editable pk.
Thanks Robin Anupol for the initial report and workaround. Backport of 9dc83c356d363c090f3351c908cad6f823aeb7bf from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index de6def5aa1..e742f3e770 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -26,3 +26,6 @@ Bugfixes
* Fixed model initialization to set the name of class-based model indexes
for models that only inherit ``models.Model`` (:ticket:`28282`).
+
+* Fixed crash in admin's inlines when a model has an inherited non-editable
+ primary key (:ticket:`27967`).