Skip to content

Commit 693562c

Browse files
committed
Use https:// links when possible
1 parent 0f008c8 commit 693562c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/debug/source_code.html.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919

2020
<div class="modal-body">
2121
{% if controller %}
22-
<h3><a href="http://symfony.com/doc/current/controller.html" target="_blank">{{ 'title.controller_code'|trans }}</a><small class="pull-right">{{ controller.file_path|format_file(controller.starting_line) }}</small></h3>
22+
<h3><a href="https://symfony.com/doc/current/controller.html" target="_blank">{{ 'title.controller_code'|trans }}</a><small class="pull-right">{{ controller.file_path|format_file(controller.starting_line) }}</small></h3>
2323
<pre><code class="php">{{ controller.source_code }}</code></pre>
2424
{% else %}
25-
<h3><a href="http://symfony.com/doc/current/controller.html">{{ 'title.controller_code'|trans }}</a></h3>
25+
<h3><a href="https://symfony.com/doc/current/controller.html">{{ 'title.controller_code'|trans }}</a></h3>
2626
<pre><code>{{ 'not_available'|trans }}</code></pre>
2727
{% endif %}
2828

29-
<h3><a href="http://symfony.com/doc/current/templating.html" target="_blank">{{ 'title.twig_template_code'|trans }}</a><small class="pull-right">{{ template.file_path|format_file(template.starting_line) }}</small></h3>
29+
<h3><a href="https://symfony.com/doc/current/templating.html" target="_blank">{{ 'title.twig_template_code'|trans }}</a><small class="pull-right">{{ template.file_path|format_file(template.starting_line) }}</small></h3>
3030
<pre><code class="twig">{{ template.source_code }}</code></pre>
3131
</div>
3232
</div>

0 commit comments

Comments
 (0)