Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6f21d07

Browse filesBrowse files
[ErrorHandler] Add missing self-closing tags on link elements
1 parent 59cc26c commit 6f21d07
Copy full SHA for 6f21d07

File tree

Expand file treeCollapse file tree

3 files changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+3
-3
lines changed

‎src/Symfony/Component/ErrorHandler/Resources/views/error.html.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/ErrorHandler/Resources/views/error.html.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="<?= $this->charset; ?>" />
55
<meta name="robots" content="noindex,nofollow,noarchive" />
66
<title>An Error Occurred: <?= $statusText; ?></title>
7-
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>❌</text></svg>">
7+
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>❌</text></svg>" />
88
<style><?= $this->include('assets/css/error.css'); ?></style>
99
</head>
1010
<body>

‎src/Symfony/Component/ErrorHandler/Resources/views/exception_full.html.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/ErrorHandler/Resources/views/exception_full.html.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="robots" content="noindex,nofollow" />
77
<meta name="viewport" content="width=device-width,initial-scale=1" />
88
<title><?= $_message; ?></title>
9-
<link rel="icon" type="image/png" href="<?= $this->include('assets/images/favicon.png.base64'); ?>">
9+
<link rel="icon" type="image/png" href="<?= $this->include('assets/images/favicon.png.base64'); ?>" />
1010
<style><?= $this->include('assets/css/exception.css'); ?></style>
1111
<style><?= $this->include('assets/css/exception_full.css'); ?></style>
1212
</head>

‎src/Symfony/Component/HttpKernel/Resources/welcome.html.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Resources/welcome.html.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<meta name="robots" content="noindex,nofollow,noarchive,nosnippet,noodp,notranslate,noimageindex" />
66
<title>Welcome to Symfony!</title>
7-
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>👋</text></svg>">
7+
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>👋</text></svg>" />
88
<style>
99
<?php $hue = random_int(0, 360); ?>
1010
<?php $darkColor = static fn (float $alpha = 1) => "hsla($hue, 20%, 45%, $alpha)"; ?>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.