mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-18 23:51:49 +02: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:
@@ -181,7 +181,14 @@
|
||||
<!-- ENDIF -->
|
||||
<dl>
|
||||
<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>
|
||||
<!-- EVENT acp_forums_main_settings_append -->
|
||||
</fieldset>
|
||||
|
Reference in New Issue
Block a user