diff options
author | Marc Alexander <admin@m-a-styles.de> | 2020-01-02 21:06:58 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2020-01-02 21:06:58 +0100 |
commit | b3f80239c1204cdaa69d4de66674d27fd4091da9 (patch) | |
tree | 4ff0a94be8cb2a42baf03c21f5e6f2bed315b3a4 /phpBB/adm/style | |
parent | [ticket/16287] After installation an error is given over statistics submission (diff) | |
download | phpbb-b3f80239c1204cdaa69d4de66674d27fd4091da9.tar.gz phpbb-b3f80239c1204cdaa69d4de66674d27fd4091da9.tar.bz2 phpbb-b3f80239c1204cdaa69d4de66674d27fd4091da9.zip |
[ticket/16287] Use twig syntax and fix coding guidelines issues
PHPBB3-16287
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_help_phpbb.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/adm/style/acp_help_phpbb.html b/phpBB/adm/style/acp_help_phpbb.html index 2426bf57cd..d526bf6ee7 100644 --- a/phpBB/adm/style/acp_help_phpbb.html +++ b/phpBB/adm/style/acp_help_phpbb.html @@ -39,7 +39,7 @@ </dl> </div> <script> - var statsData = {S_STATS_DATA}; + var statsData = {{ S_STATS_DATA }}; </script> <!-- EVENT acp_help_phpbb_stats_after --> <fieldset> @@ -54,11 +54,11 @@ <form action="{U_COLLECT_STATS}" method="post" target="questionaire_result" id="questionnaire-form"> <fieldset> <p class="submit-buttons"> - <!-- BEGIN providers --> - <!-- BEGIN values --> - <input type="hidden" name="{providers.NAME}[{providers.values.KEY}]" value="{providers.values.VALUE}" /> - <!-- END values --> - <!-- END providers --> + {% for providers in loops.providers %} + {% for values in providers.values %} + <input type="hidden" name="{{ providers.NAME }}[{{ values.KEY }}]" value="{{ values.VALUE }}" /> + {% endfor %} + {% endfor %} <input class="button1" type="submit" id="submit_stats" name="submit" value="{L_SEND_STATISTICS}" /> </p> </fieldset> |