diff options
author | Nils Adermann <naderman@naderman.de> | 2008-02-03 22:39:38 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2008-02-03 22:39:38 +0000 |
commit | 3b669aedfde10b95996d529da9b21e31c46cc8a6 (patch) | |
tree | 604b88c78c468606e0d94990d6b7e3750678d428 /phpBB/adm | |
parent | 7b262babcd5c862c3068b08da8bba5f48bd5f36a (diff) | |
download | forums-3b669aedfde10b95996d529da9b21e31c46cc8a6.tar forums-3b669aedfde10b95996d529da9b21e31c46cc8a6.tar.gz forums-3b669aedfde10b95996d529da9b21e31c46cc8a6.tar.bz2 forums-3b669aedfde10b95996d529da9b21e31c46cc8a6.tar.xz forums-3b669aedfde10b95996d529da9b21e31c46cc8a6.zip |
adding a new option to hide the entire list of subforums on listforums
git-svn-id: file:///svn/phpbb/trunk@8373 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/acp_forums.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index 560bc195bc..0a8c9b4c8a 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -203,6 +203,11 @@ <dd><select id="forum_status" name="forum_status">{S_STATUS_OPTIONS}</select></dd> </dl> <dl> + <dt><label for="display_subforum_list">{L_LIST_SUBFORUMS}:</label><br /><span>{L_LIST_SUBFORUMS_EXPLAIN}</span></dt> + <dd><label><input type="radio" class="radio" name="display_subforum_list" value="1"<!-- IF S_DISPLAY_SUBFORUM_LIST --> id="display_subforum_list" checked="checked"<!-- ENDIF --> /> {L_YES}</label> + <label><input type="radio" class="radio" name="display_subforum_list" value="0"<!-- IF not S_DISPLAY_SUBFORUM_LIST --> id="display_subforum_list" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> + </dl> + <dl> <dt><label for="display_on_index">{L_LIST_INDEX}:</label><br /><span>{L_LIST_INDEX_EXPLAIN}</span></dt> <dd><label><input type="radio" class="radio" name="display_on_index" value="1"<!-- IF S_DISPLAY_ON_INDEX --> id="display_on_index" checked="checked"<!-- ENDIF --> /> {L_YES}</label> <label><input type="radio" class="radio" name="display_on_index" value="0"<!-- IF not S_DISPLAY_ON_INDEX --> id="display_on_index" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd> |