Skip to content

Commit 721e0a7

Browse files
committed
Address potential twig issues in phpBB 3.3.9
Signed-off-by: Matt Friedman <maf675@gmail.com>
1 parent 2370b06 commit 721e0a7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

styles/prosilver/template/index_body.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<h2>{{ lang('IDEAS_TITLE') }}</h2>
66

7-
{% include 'action_bar_top.html' %}
7+
{% include '@phpbb_ideas/action_bar_top.html' %}
88

99
{# TOP IDEAS #}
1010
<div class="flex-box flex-align-end flex-justify">
@@ -24,7 +24,7 @@ <h2>{{ lang('TOP_IDEAS') }}</h2>
2424
</li>
2525
</ul>
2626
{% set ideas = top_ideas %}
27-
{% include 'index_list.html' %}
27+
{% include '@phpbb_ideas/index_list.html' %}
2828
</div>
2929
</div>
3030

@@ -46,7 +46,7 @@ <h2>{{ lang('LATEST_IDEAS') }}</h2>
4646
</li>
4747
</ul>
4848
{% set ideas = latest_ideas %}
49-
{% include 'index_list.html' %}
49+
{% include '@phpbb_ideas/index_list.html' %}
5050
</div>
5151
</div>
5252

@@ -68,7 +68,7 @@ <h2>{{ lang('IMPLEMENTED_IDEAS') }}</h2>
6868
</li>
6969
</ul>
7070
{% set ideas = implemented_ideas %}
71-
{% include 'index_list.html' %}
71+
{% include '@phpbb_ideas/index_list.html' %}
7272
</div>
7373
</div>
7474

styles/prosilver/template/list_body.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<h2>{{ lang('IDEAS_TITLE') }} <i class="icon fa-fw fa-angle-double-right"></i>{{ STATUS_NAME }}</h2>
66

7-
{% include 'action_bar_top.html' %}
7+
{% include '@phpbb_ideas/action_bar_top.html' %}
88

99
<div class="forumbg">
1010
<div class="inner">
@@ -16,7 +16,7 @@ <h2>{{ lang('IDEAS_TITLE') }} <i class="icon fa-fw fa-angle-double-right"></i>{{
1616
</dl>
1717
</li>
1818
</ul>
19-
{% include 'index_list.html' %}
19+
{% include '@phpbb_ideas/index_list.html' %}
2020
</div>
2121
</div>
2222

0 commit comments

Comments
 (0)