[ticket/15699] Use twig syntax

PHPBB3-15699
This commit is contained in:
Rubén Calvo 2018-07-28 12:25:54 +02:00 committed by Ruben Calvo
parent 683c99086c
commit a2c7255b5b
No known key found for this signature in database

View file

@ -4,7 +4,7 @@
<h1>{{ lang('STORAGE_TITLE') }}</h1> <h1>{{ lang('STORAGE_TITLE') }}</h1>
<!-- IF S_CONTINUE_UPDATING --> {% if S_CONTINUE_UPDATING %}
<script type="text/javascript"> <script type="text/javascript">
// <![CDATA[ // <![CDATA[
/** /**
@ -14,23 +14,22 @@
{ {
close_waitscreen = 0; close_waitscreen = 0;
// no scrollbars // no scrollbars
popup('{UA_PROGRESS_BAR}', 400, 240, '_storage'); popup('{{ UA_PROGRESS_BAR }}', 400, 240, '_storage');
} }
// ]]> // ]]>
</script> </script>
<p>{L_CONTINUE_EXPLAIN}</p> <p>{{ lang('CONTINUE_EXPLAIN') }}</p>
<form id="acp_storage_continue" method="post" action="{U_CONTINUE_UPDATING}"> <form id="acp_storage_continue" method="post" action="{{ U_CONTINUE_UPDATING }}">
<fieldset class="submit-buttons"> <fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend> <legend>{{ lang('SUBMIT }}</legend>
<input class="button1" type="submit" id="continue" name="continue" value="{L_CONTINUE}" onclick="popup_progress_bar();" />&nbsp; <input class="button1" type="submit" id="continue" name="continue" value="{{ lang('CONTINUE') }}" onclick="popup_progress_bar();" />&nbsp;
<input class="button2" type="submit" id="cancel" name="cancel" value="{L_CANCEL}" /> <input class="button2" type="submit" id="cancel" name="cancel" value="{{ lang('CANCEL') }}" />
{S_FORM_TOKEN} {{ S_FORM_TOKEN }}
</fieldset> </fieldset>
</form> </form>
<!-- ELSE --> {% else %}
<p>{{ lang('STORAGE_TITLE_EXPLAIN') }}</p> <p>{{ lang('STORAGE_TITLE_EXPLAIN') }}</p>
<table class="table1 zebra-table"> <table class="table1 zebra-table">
@ -136,6 +135,6 @@
{{ S_FORM_TOKEN }} {{ S_FORM_TOKEN }}
</fieldset> </fieldset>
</form> </form>
<!-- ENDIF --> {% endif %}
{% include 'overall_footer.html' %} {% include 'overall_footer.html' %}