summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexander Gaevsky <sasha@sasha0.ru>2016-01-09 22:15:21 +0200
committerTim Graham <timograham@gmail.com>2016-01-21 13:22:02 -0500
commitbe3169d6ed7e509c7e3c269e0cc5ae479cee9f9d (patch)
treeecfec8c85c40d3a5af50c61e559f44073459fc0a /docs
parentc9d1d5593b5533d970cc1d1fe918de72469920b5 (diff)
[1.9.x] Fixed #26060 -- Fixed crash with reverse OneToOneField in ModelAdmin.readonly_fields.
Backport of 9a33d3d76497d9e198de942ee1236c452231262f from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.9.txt3
-rw-r--r--docs/releases/1.9.2.txt3
2 files changed, 6 insertions, 0 deletions
diff --git a/docs/releases/1.8.9.txt b/docs/releases/1.8.9.txt
index 8c5445b549..86bb03d916 100644
--- a/docs/releases/1.8.9.txt
+++ b/docs/releases/1.8.9.txt
@@ -26,3 +26,6 @@ Bugfixes
* Fixed a crash when using an ``__in`` lookup inside a ``Case`` expression
(:ticket:`26071`).
+
+* Fixed a crash when using a reverse ``OneToOneField`` in
+ ``ModelAdmin.readonly_fields`` (:ticket:`26060`).
diff --git a/docs/releases/1.9.2.txt b/docs/releases/1.9.2.txt
index 0da9cf65cd..179cfafbb3 100644
--- a/docs/releases/1.9.2.txt
+++ b/docs/releases/1.9.2.txt
@@ -49,3 +49,6 @@ Bugfixes
SQLite with more than 2000 parameters when :setting:`DEBUG` is ``True`` on
distributions that increase the ``SQLITE_MAX_VARIABLE_NUMBER`` compile-time
limit to over 2000, such as Debian (:ticket:`26063`).
+
+* Fixed a crash when using a reverse ``OneToOneField`` in
+ ``ModelAdmin.readonly_fields`` (:ticket:`26060`).