diff options
Diffstat (limited to 'phpBB/adm/style/acp_permission_roles.html')
-rw-r--r-- | phpBB/adm/style/acp_permission_roles.html | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/phpBB/adm/style/acp_permission_roles.html b/phpBB/adm/style/acp_permission_roles.html index 8e1076d701..9538af8451 100644 --- a/phpBB/adm/style/acp_permission_roles.html +++ b/phpBB/adm/style/acp_permission_roles.html @@ -8,8 +8,10 @@ <!-- var active_option = 'options0'; - // Show/hide option panels - // value = suffix for ID to show + /** + * Show/hide option panels + * value = suffix for ID to show + */ function swap_options(id) { if (id == active_option) @@ -24,8 +26,10 @@ active_option = id; } - // Mark all radio buttons in one panel - // id = table ID container, s = status ['y'/'u'/'n'] + /** + * Mark all radio buttons in one panel + * id = table ID container, s = status ['y'/'u'/'n'] + */ function mark_options(id, s) { var t = document.getElementById(id); @@ -62,14 +66,14 @@ <fieldset> <legend>{L_ROLE_DETAILS}</legend> - <dl> - <dt><label for="role_name">{L_ROLE_NAME}:</label></dt> - <dd><input name="role_name" type="text" id="role_name" value="{ROLE_NAME}" /></dd> - </dl> - <dl> - <dt><label for="role_description">{L_ROLE_DESCRIPTION}:</label><br /><span>{L_ROLE_DESCRIPTION_EXPLAIN}</span></dt> - <dd><textarea id="role_description" name="role_description" rows="3" cols="45">{ROLE_DESCRIPTION}</textarea></dd> - </dl> + <dl> + <dt><label for="role_name">{L_ROLE_NAME}:</label></dt> + <dd><input name="role_name" type="text" id="role_name" value="{ROLE_NAME}" /></dd> + </dl> + <dl> + <dt><label for="role_description">{L_ROLE_DESCRIPTION}:</label><br /><span>{L_ROLE_DESCRIPTION_EXPLAIN}</span></dt> + <dd><textarea id="role_description" name="role_description" rows="3" cols="45">{ROLE_DESCRIPTION}</textarea></dd> + </dl> </fieldset> <fieldset class="quick"> |