mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/17364] Correctly handle styles list in ACP Forums
PHPBB-17364 Signed-off-by: Matt Friedman <maf675@gmail.com>
This commit is contained in:
parent
b2b61390c4
commit
e69a86c49e
1 changed files with 8 additions and 1 deletions
|
@ -181,7 +181,14 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
<dl>
|
<dl>
|
||||||
<dt><label for="forum_style">{L_FORUM_STYLE}{L_COLON}</label></dt>
|
<dt><label for="forum_style">{L_FORUM_STYLE}{L_COLON}</label></dt>
|
||||||
<dd><select id="forum_style" name="forum_style"><option value="0">{L_DEFAULT_STYLE}</option>{S_STYLES_OPTIONS}</select></dd>
|
<dd>
|
||||||
|
<select id="forum_style" name="forum_style">
|
||||||
|
<option value="0">{{ lang('DEFAULT_STYLE') }}</option>
|
||||||
|
{% for style in S_STYLES_OPTIONS %}
|
||||||
|
<option value="{{ style.value }}"{% if style.selected %} selected="selected"{% endif %}>{{ style.label }}</option>
|
||||||
|
{% endfor %}
|
||||||
|
</select>
|
||||||
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<!-- EVENT acp_forums_main_settings_append -->
|
<!-- EVENT acp_forums_main_settings_append -->
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
Loading…
Add table
Reference in a new issue