diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-05-14 13:23:16 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2010-05-16 18:54:48 +0200 |
commit | d555e83b80b79f7afd1730b50502105a2c2f76d2 (patch) | |
tree | a7704f65f39ebbbf7c9a54f9571b023e0e8be6f2 /phpBB/adm/style | |
parent | 478708346e2b046ae474ffb0c2e451a2690ddd2b (diff) | |
download | forums-d555e83b80b79f7afd1730b50502105a2c2f76d2.tar forums-d555e83b80b79f7afd1730b50502105a2c2f76d2.tar.gz forums-d555e83b80b79f7afd1730b50502105a2c2f76d2.tar.bz2 forums-d555e83b80b79f7afd1730b50502105a2c2f76d2.tar.xz forums-d555e83b80b79f7afd1730b50502105a2c2f76d2.zip |
[ticket/9547] Use separate constants for display/enable active topics.
Split S_DISPLAY_ACTIVE_TOPICS into S_DISPLAY_ACTIVE_TOPICS and
S_ENABLE_ACTIVE_TOPICS so we have correct default values when changing the
forum type.
PHPBB3-9547
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_forums.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index 937a288cb2..9f9216a068 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -189,8 +189,8 @@ <legend>{L_GENERAL_FORUM_SETTINGS}</legend> <dl> <dt><label for="display_active">{L_DISPLAY_ACTIVE_TOPICS}:</label><br /><span>{L_DISPLAY_ACTIVE_TOPICS_EXPLAIN}</span></dt> - <dd><label><input type="radio" class="radio" name="display_active" value="1"<!-- IF S_DISPLAY_ACTIVE_TOPICS --> id="display_active" checked="checked"<!-- ENDIF --> /> {L_YES}</label> - <label><input type="radio" class="radio" name="display_active" value="0"<!-- IF not S_DISPLAY_ACTIVE_TOPICS --> id="display_active" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> + <dd><label><input type="radio" class="radio" name="display_active" value="1"<!-- IF S_ENABLE_ACTIVE_TOPICS --> id="display_active" checked="checked"<!-- ENDIF --> /> {L_YES}</label> + <label><input type="radio" class="radio" name="display_active" value="0"<!-- IF not S_ENABLE_ACTIVE_TOPICS --> id="display_active" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> </dl> </fieldset> </div> |