summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-09 08:29:49 -0400
committerTim Graham <timograham@gmail.com>2014-09-09 11:05:31 -0400
commitc32bc1a7a7bbb3d5bd0a2c11bc77dd5ab1c32fbc (patch)
tree378c2e4d2ee2390430fadc759e1ecb8852e84aa9 /docs/releases
parente5ae03fd5a887a7038fb6878ffeec85b92829d1b (diff)
Fixed #11775 -- Made ABSOLUTE_URL_OVERRIDES work with models that don't define get_absolute_url().
Thanks jukvalim for the report and initial patch, and Preston Timmons for review.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/1.7.1.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 368749f595..46a19f1f6d 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -26,3 +26,8 @@ Bugfixes
* Fixed a typo in an ``inlineformset_factory()`` error message that caused a
crash (:ticket:`23451`).
+
+* Restored the ability to use :setting:`ABSOLUTE_URL_OVERRIDES` with the
+ ``'auth.User'`` model (:ticket:`11775`). As a side effect, the setting now
+ adds a ``get_absolute_url()`` method to any model that appears in
+ ``ABSOLUTE_URL_OVERRIDES`` but doesn't define ``get_absolute_url()``.