Skip to content

Commit 320dbca

Browse files
Merge branch '6.4' into 7.0
* 6.4: (21 commits) [ErrorHandler] Add missing self-closing tags on link elements Fix merge (bis) Fix merge Add missing return type [FrameworkBundle] ConfigBuilderCacheWarmer should be non-optional [HttpClient] Fix pausing responses before they start when using curl [Notifier] Updated the NTFY notifier to run without a user parameter [Translation] Fix constant domain resolution in PhpAstExtractor separate child and parent context in NotificationEmail on writes [Mailer] [Mailgun] Fix sender header encoding do not overwrite the cache key when it is false [Mailer] [Scaleway] Fix attachment handling [Mailer] Throw TransportException when unable to read from socket [Serializer] Rewrite `AbstractObjectNormalizer::createChildContext()` to use the provided `cache_key` from original context when creating child contexts Revert #47715 [HttpClient] Fix error chunk creation in passthru Adjusting and removing the 'review' attribute from the pt_br translation XML. [DependencyInjection] Fix loading all env vars from secrets when only a subset is needed Fix option filenameMaxLength to the File constraint (Image) [Serializer] Take unnamed variadic parameters into account when denormalizing ...
2 parents c620a06 + e78f98d commit 320dbca

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Resources/views/Collector/notifier.html.twig

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@
134134
<h3 class="tab-title">Notification</h3>
135135
<div class="tab-content">
136136
<pre class="prewrap" style="max-height: 600px">
137-
{{- 'Subject: ' ~ notification.getSubject() }}<br>
138-
{{- 'Content: ' ~ notification.getContent() }}<br>
139-
{{- 'Importance: ' ~ notification.getImportance() }}<br>
140-
{{- 'Emoji: ' ~ (notification.getEmoji() is empty ? '(empty)' : notification.getEmoji()) }}<br>
141-
{{- 'Exception: ' ~ notification.getException() ?? '(empty)' }}<br>
137+
{{- 'Subject: ' ~ notification.getSubject() }}<br/>
138+
{{- 'Content: ' ~ notification.getContent() }}<br/>
139+
{{- 'Importance: ' ~ notification.getImportance() }}<br/>
140+
{{- 'Emoji: ' ~ (notification.getEmoji() is empty ? '(empty)' : notification.getEmoji()) }}<br/>
141+
{{- 'Exception: ' ~ notification.getException() ?? '(empty)' }}<br/>
142142
{{- 'ExceptionAsString: ' ~ (notification.getExceptionAsString() is empty ? '(empty)' : notification.getExceptionAsString()) }}
143143
</pre>
144144
</div>

Resources/views/Profiler/base.html.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="{{ _charset }}">
5-
<meta name="robots" content="noindex,nofollow">
6-
<meta name="viewport" content="width=device-width,initial-scale=1">
4+
<meta charset="{{ _charset }}" />
5+
<meta name="robots" content="noindex,nofollow" />
6+
<meta name="viewport" content="width=device-width,initial-scale=1" />
77
<title>{% block title %}Symfony Profiler{% endblock %}</title>
88

99
{% set request_collector = profile is defined ? profile.collectors.request|default(null) : null %}

0 commit comments

Comments
 (0)