summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgtleee <gtleee@hotmail.com>2023-05-22 05:43:15 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-05-22 11:05:20 +0200
commit0a324f1b66b9b948041b1c557fc18b3fb40743c4 (patch)
treef55cb9d18a815986ff0ae3f49eb16a5c7977225d
parent061a8a1bd818ca2c8a6493f33cae2379e34e181f (diff)
Fixed #34588 -- Removed usage of nonexistent stylesheet in the 'Congrats' page.
Regression in d46cc15c51219c3418e0287bf018c5ba1346f825.
-rw-r--r--django/views/templates/default_urlconf.html1
-rw-r--r--docs/releases/4.2.2.txt3
2 files changed, 3 insertions, 1 deletions
diff --git a/django/views/templates/default_urlconf.html b/django/views/templates/default_urlconf.html
index bdef8b5a0a..c54ce842d1 100644
--- a/django/views/templates/default_urlconf.html
+++ b/django/views/templates/default_urlconf.html
@@ -6,7 +6,6 @@
<meta charset="utf-8">
<title>{% translate "The install worked successfully! Congratulations!" %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="/static/admin/css/fonts.css">
<style>
html {
line-height: 1.15;
diff --git a/docs/releases/4.2.2.txt b/docs/releases/4.2.2.txt
index 475531b531..af2e60f2e7 100644
--- a/docs/releases/4.2.2.txt
+++ b/docs/releases/4.2.2.txt
@@ -25,3 +25,6 @@ Bugfixes
* Fixed a performance regression in Django 4.2 when compiling queries without
ordering (:ticket:`34580`).
+
+* Fixed a regression in Django 4.2 where nonexistent stylesheet was linked on a
+ “Congratulations!” page (:ticket:`34588`).