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

Merge pull request #5657 from Crizz0/ticket/15745

[ticket/15745] Uses {{ CREDIT_LINE }} instead of hardcoded language
This commit is contained in:
Marc Alexander 2019-08-16 12:24:42 +02:00
commit 2d8c5efbd2
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995
3 changed files with 19 additions and 3 deletions

View File

@ -6,7 +6,9 @@
<div id="page-footer"> <div id="page-footer">
<div class="copyright"> <div class="copyright">
Powered by <a href="https://www.phpbb.com/">phpBB</a>&reg; Forum Software &copy; phpBB Limited {% if S_COPYRIGHT_HTML %}
{{ CREDIT_LINE }}
{% endif %}
</div> </div>
</div> </div>
</div> </div>

View File

@ -42,7 +42,14 @@
<div id="page-footer" class="page-footer"> <div id="page-footer" class="page-footer">
<div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div> <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
<div class="copyright">Powered by phpBB&reg; Forum Software &copy; phpBB Limited<br />https://www.phpbb.com/</div> <div class="copyright">
<p>{{ CREDIT_LINE }}
</p>
{% if TRANSLATION_INFO %}
<p>{{ TRANSLATION_INFO }}
</p>
{% endif %}
</div>
</div> </div>
</div> </div>

View File

@ -38,7 +38,14 @@
<div id="page-footer" class="page-footer"> <div id="page-footer" class="page-footer">
<div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div> <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div>
<div class="copyright">Powered by phpBB&reg; Forum Software &copy; phpBB Limited<br />https://www.phpbb.com/</div> <div class="copyright">
<p>{{ CREDIT_LINE }}
</p>
{% if TRANSLATION_INFO %}
<p>{{ TRANSLATION_INFO }}
</p>
{% endif %}
</div>
</div> </div>
</div> </div>