summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHisham Mahmood <hishammahmood41@gmail.com>2024-07-17 15:50:45 +0200
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-07-18 08:30:53 +0200
commitc3d3af8ea369e16263c8330b1745ba101d1c8d62 (patch)
tree0a80e5e7b92bffdb98ebe08691a083851165ccdc /docs
parentfe9bf0cef50e8e97e76424df98fd841fdc211e94 (diff)
[5.0.x] Fixed #35606, Refs #34045 -- Fixed rendering of ModelAdmin.action_checkbox for models with a __html__ method.
Thank you Claude Paroz for the report. Regression in 85366fbca723c9b37d0ac9db1d44e3f1cb188db2. Backport of 182f262b15882649bbc39d769f9b721cf3660f6f from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.0.8.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/5.0.8.txt b/docs/releases/5.0.8.txt
index 8e072049b2..1037b78f75 100644
--- a/docs/releases/5.0.8.txt
+++ b/docs/releases/5.0.8.txt
@@ -11,3 +11,7 @@ Bugfixes
* Added missing validation for ``UniqueConstraint(nulls_distinct=False)`` when
using ``*expressions`` (:ticket:`35594`).
+
+* Fixed a regression in Django 5.0 where ``ModelAdmin.action_checkbox`` could
+ break the admin changelist HTML page when rendering a model instance with a
+ ``__html__`` method (:ticket:`35606`).