mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15699] Use twig syntax
PHPBB3-15699
This commit is contained in:
parent
683c99086c
commit
a2c7255b5b
1 changed files with 10 additions and 11 deletions
|
@ -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();" />
|
<input class="button1" type="submit" id="continue" name="continue" value="{{ lang('CONTINUE') }}" onclick="popup_progress_bar();" />
|
||||||
<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' %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue