Browse Source

Fixed #34588 -- Removed usage of nonexistent stylesheet in the 'Congrats' page.

Regression in d46cc15c51219c3418e0287bf018c5ba1346f825.
gtleee 1 year ago
parent
commit
0a324f1b66
2 changed files with 3 additions and 1 deletions
  1. 0 1
      django/views/templates/default_urlconf.html
  2. 3 0
      docs/releases/4.2.2.txt

+ 0 - 1
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;

+ 3 - 0
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`).