Making WordPress.org


Ignore:
Timestamp:
03/23/2021 01:03:42 AM (5 years ago)
Author:
dd32
Message:

Support: Also Viewing: Allow moderators to enable the also-viewing feature for users who do not meet the reply threshold of 20 replies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-bbp-also-viewing/wporg-bbp-also-viewing.php

    r10821 r10839  
    8383        }
    8484
    85         return
    86                 allowed_for_user( $user_id ) &&
    87                 get_user_meta( $user_id, USER_OPTION, true );
     85        return (bool) get_user_meta( $user_id, USER_OPTION, true );
    8886}
    8987
     
    105103
    106104        return
     105                enabled( $user_id ) ||
    107106                user_can( $user_id, 'moderate' ) ||
    108107                bbp_get_user_reply_count( $user_id, true ) >= REPLY_THRESH;
Note: See TracChangeset for help on using the changeset viewer.