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:53:28 -0500
commit4e4b9521236c9238fc26a77b22acf75218702c54 (patch)
tree52b86a786a9e347a3bbe4650346e37f81ace8869 /docs
parent65ccb1b7e4be278f5d14a97d50bc8a4e94b3001d (diff)
[2.1.x] Fixed #30050 -- Fixed InlineModelAdmin.has_change_permission() called with non-None obj during add.
Thanks andreage for the report and suggested fix. Backport of 02c07be95c47efaab9da7422c33ee76142f11336 from master.
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`).