Skip to content

Commit 6dc3c76

Browse files
[ErrorHandler] Add missing self-closing tags on link elements
1 parent 8f9c12a commit 6dc3c76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Resources/views/error.html.php

Lines 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>

Resources/views/exception_full.html.php

Lines 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>

0 commit comments

Comments
 (0)