Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/28/2020 04:24:34 PM (4 years ago)
Author:
johnjamesjacoby
Message:

Settings: Only allow users with the edit_users capability to toggle the Super Moderators option.

This commit also rearranges some settings for improved UX, and adds descriptive text to the "Super Moderators" and "Forum Moderators" settings for improved clarity.

This commit addresses a responsibly disclosed security concern, and does not have a public issue in Trac.

In trunk, for 2.7.0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/settings.php

    r7006 r7088  
    164164        'bbp_settings_features' => array(
    165165
     166            // Allow auto embedding setting
     167            '_bbp_use_autoembed' => array(
     168                'title'             => esc_html__( 'Auto-embed links', 'bbpress' ),
     169                'callback'          => 'bbp_admin_setting_callback_use_autoembed',
     170                'sanitize_callback' => 'intval',
     171                'args'              => array()
     172            ),
     173
     174            // Set reply threading level
     175            '_bbp_thread_replies_depth' => array(
     176                'title'             => esc_html__( 'Reply Threading', 'bbpress' ),
     177                'callback'          => 'bbp_admin_setting_callback_thread_replies_depth',
     178                'sanitize_callback' => 'intval',
     179                'args'              => array()
     180            ),
     181
     182            // Allow threaded replies
     183            '_bbp_allow_threaded_replies' => array(
     184                'sanitize_callback' => 'intval',
     185                'args'              => array()
     186            ),
     187
    166188            // Allow topic and reply revisions
    167189            '_bbp_allow_revisions' => array(
     
    200222                'title'             => esc_html__( 'Topic tags', 'bbpress' ),
    201223                'callback'          => 'bbp_admin_setting_callback_topic_tags',
    202                 'sanitize_callback' => 'intval',
    203                 'args'              => array()
    204             ),
    205 
    206             // Allow per-forum moderators
    207             '_bbp_allow_forum_mods' => array(
    208                 'title'             => esc_html__( 'Forum Moderators', 'bbpress' ),
    209                 'callback'          => 'bbp_admin_setting_callback_forum_mods',
    210                 'sanitize_callback' => 'intval',
    211                 'args'              => array()
    212             ),
    213 
    214             // Allow moderators to edit users
    215             '_bbp_allow_super_mods' => array(
    216                 'title'             => esc_html__( 'Super Moderators', 'bbpress' ),
    217                 'callback'          => 'bbp_admin_setting_callback_super_mods',
    218224                'sanitize_callback' => 'intval',
    219225                'args'              => array()
     
    236242            ),
    237243
    238             // Allow auto embedding setting
    239             '_bbp_use_autoembed' => array(
    240                 'title'             => esc_html__( 'Auto-embed links', 'bbpress' ),
    241                 'callback'          => 'bbp_admin_setting_callback_use_autoembed',
     244            // Allow per-forum moderators
     245            '_bbp_allow_forum_mods' => array(
     246                'title'             => esc_html__( 'Forum Moderators', 'bbpress' ),
     247                'callback'          => 'bbp_admin_setting_callback_forum_mods',
    242248                'sanitize_callback' => 'intval',
    243249                'args'              => array()
    244250            ),
    245251
    246             // Set reply threading level
    247             '_bbp_thread_replies_depth' => array(
    248                 'title'             => esc_html__( 'Reply Threading', 'bbpress' ),
    249                 'callback'          => 'bbp_admin_setting_callback_thread_replies_depth',
    250                 'sanitize_callback' => 'intval',
    251                 'args'              => array()
    252             ),
    253 
    254             // Allow threaded replies
    255             '_bbp_allow_threaded_replies' => array(
    256                 'sanitize_callback' => 'intval',
     252            // Allow moderators to edit users
     253            '_bbp_allow_super_mods' => array(
     254                'title'             => esc_html__( 'Super Moderators', 'bbpress' ),
     255                'callback'          => 'bbp_admin_setting_callback_super_mods',
     256                'sanitize_callback' => 'intval',
     257                'capability'        => 'edit_users',
    257258                'args'              => array()
    258259            )
     
    838839    <input name="_bbp_allow_forum_mods" id="_bbp_allow_forum_mods" type="checkbox" value="1" <?php checked( bbp_allow_forum_mods( true ) ); bbp_maybe_admin_setting_disabled( '_bbp_allow_forum_mods' ); ?> />
    839840    <label for="_bbp_allow_forum_mods"><?php esc_html_e( 'Allow forums to have dedicated moderators', 'bbpress' ); ?></label>
     841    <p class="description"><?php esc_html_e( 'This does not include the ability to edit users.', 'bbpress' ); ?></p>
    840842
    841843<?php
     
    851853
    852854    <input name="_bbp_allow_super_mods" id="_bbp_allow_super_mods" type="checkbox" value="1" <?php checked( bbp_allow_super_mods( false ) ); bbp_maybe_admin_setting_disabled( '_bbp_allow_super_mods' ); ?> />
    853     <label for="_bbp_allow_super_mods"><?php esc_html_e( 'Allow moderators to edit other users', 'bbpress' ); ?></label>
     855    <label for="_bbp_allow_super_mods"><?php esc_html_e( 'Allow Moderators and Keymasters to edit users', 'bbpress' ); ?></label>
     856    <p class="description"><?php esc_html_e( 'This includes roles, passwords, and email addresses.', 'bbpress' ); ?></p>
    854857
    855858<?php
Note: See TracChangeset for help on using the changeset viewer.