summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-12-31 09:18:26 -0500
committerTim Graham <timograham@gmail.com>2019-01-01 09:42:14 -0500
commit02c07be95c47efaab9da7422c33ee76142f11336 (patch)
tree3b7a25847055424c48e6691a58fadad5ea0064f4 /docs
parent0123b67f6b8304a5c32a0fe98f97ae506977454b (diff)
Fixed #30050 -- Fixed InlineModelAdmin.has_change_permission() called with non-None obj during add.
Thanks andreage for the report and suggested fix.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.1.5.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.1.5.txt b/docs/releases/2.1.5.txt
index 73850e01b5..27ffbc7510 100644
--- a/docs/releases/2.1.5.txt
+++ b/docs/releases/2.1.5.txt
@@ -22,3 +22,7 @@ Bugfixes
* Fixed a regression in Django 2.1.4 (which enabled keep-alive connections)
where request body data isn't properly consumed for such connections
(:ticket:`30015`).
+
+* Fixed a regression in Django 2.1.4 where
+ ``InlineModelAdmin.has_change_permission()`` is incorrectly called with a
+ non-``None`` ``obj`` argument during an object add (:ticket:`30050`).