diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-08-16 12:24:42 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-08-16 12:24:42 +0200 |
commit | 2d8c5efbd26cecf00188c2e3d6d6235b820575a0 (patch) | |
tree | 224930bbef8a88cb953aa68d4ba072c269a4eab6 | |
parent | 93a472f08e3d7f5f291ac3c5c8409fbf7f5e0705 (diff) | |
parent | 14d83139ce488b12085a14935c88a40dfdf2492f (diff) | |
download | forums-2d8c5efbd26cecf00188c2e3d6d6235b820575a0.tar forums-2d8c5efbd26cecf00188c2e3d6d6235b820575a0.tar.gz forums-2d8c5efbd26cecf00188c2e3d6d6235b820575a0.tar.bz2 forums-2d8c5efbd26cecf00188c2e3d6d6235b820575a0.tar.xz forums-2d8c5efbd26cecf00188c2e3d6d6235b820575a0.zip |
Merge pull request #5657 from Crizz0/ticket/15745
[ticket/15745] Uses {{ CREDIT_LINE }} instead of hardcoded language
-rw-r--r-- | phpBB/adm/style/installer_footer.html | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html | 9 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_print.html | 9 |
3 files changed, 19 insertions, 3 deletions
diff --git a/phpBB/adm/style/installer_footer.html b/phpBB/adm/style/installer_footer.html index fefa8f6d3f..54e6951a12 100644 --- a/phpBB/adm/style/installer_footer.html +++ b/phpBB/adm/style/installer_footer.html @@ -6,7 +6,9 @@ <div id="page-footer"> <div class="copyright"> - Powered by <a href="https://www.phpbb.com/">phpBB</a>® Forum Software © phpBB Limited + {% if S_COPYRIGHT_HTML %} + {{ CREDIT_LINE }} + {% endif %} </div> </div> </div> diff --git a/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html b/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html index 7a8849258a..41ff5b898a 100644 --- a/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html +++ b/phpBB/styles/prosilver/template/ucp_pm_viewmessage_print.html @@ -42,7 +42,14 @@ <div id="page-footer" class="page-footer"> <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div> - <div class="copyright">Powered by phpBB® Forum Software © 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> diff --git a/phpBB/styles/prosilver/template/viewtopic_print.html b/phpBB/styles/prosilver/template/viewtopic_print.html index b504949053..658062f9fd 100644 --- a/phpBB/styles/prosilver/template/viewtopic_print.html +++ b/phpBB/styles/prosilver/template/viewtopic_print.html @@ -38,7 +38,14 @@ <div id="page-footer" class="page-footer"> <div class="page-number">{S_TIMEZONE}<br />{PAGE_NUMBER}</div> - <div class="copyright">Powered by phpBB® Forum Software © 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> |