1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

[ticket/15745] Use TWIG instead of phpbb template code

PHPBB3-15745
This commit is contained in:
Christian Schnegelberger 2019-08-13 21:32:44 +02:00
parent 64304c8364
commit 14d83139ce
3 changed files with 8 additions and 8 deletions

View File

@ -6,9 +6,9 @@
<div id="page-footer">
<div class="copyright">
<!-- IF S_COPYRIGHT_HTML -->
{% if S_COPYRIGHT_HTML %}
{{ CREDIT_LINE }}
<!-- ENDIF -->
{% endif %}
</div>
</div>
</div>

View File

@ -43,12 +43,12 @@
<div id="page-footer" class="page-footer">
<div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
<div class="copyright">
<p>{ CREDIT_LINE }}
<p>{{ CREDIT_LINE }}
</p>
<!-- IF TRANSLATION_INFO -->
{% if TRANSLATION_INFO %}
<p>{{ TRANSLATION_INFO }}
</p>
<!-- ENDIF -->
{% endif %}
</div>
</div>
</div>

View File

@ -39,12 +39,12 @@
<div id="page-footer" class="page-footer">
<div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
<div class="copyright">
<p>{ CREDIT_LINE }}
<p>{{ CREDIT_LINE }}
</p>
<!-- IF TRANSLATION_INFO -->
{% if TRANSLATION_INFO %}
<p>{{ TRANSLATION_INFO }}
</p>
<!-- ENDIF -->
{% endif %}
</div>
</div>
</div>