Making WordPress.org


Ignore:
Timestamp:
08/02/2017 03:24:38 AM (7 years ago)
Author:
SergeyBiryukov
Message:

Support Forums: Remove 'Stick' link for non-public topics.

See #2795.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-moderators.php

    r5710 r5729  
    395395        }
    396396
     397        // Remove 'Stick' link for reviews or non-public topics.
     398        if ( Plugin::REVIEWS_FORUM_ID == bbp_get_topic_forum_id( $post_id ) || ! bbp_is_topic_public( $post_id ) ) {
     399            unset( $r['stick'] );
     400        }
     401
    397402        // Add 'Archive' link.
    398403        $r['archive'] = $this->get_archive_link( array( 'post_id' => $post_id ) );
     
    415420        unset( $actions['unapproved'] );
    416421
    417         // Remove 'Stick' link for reviews.
    418         if ( Plugin::REVIEWS_FORUM_ID == $post->post_parent ) {
     422        // Remove 'Stick' link for reviews or non-public topics.
     423        if ( Plugin::REVIEWS_FORUM_ID == bbp_get_topic_forum_id( $post->ID ) || ! bbp_is_topic_public( $post->ID ) ) {
    419424            unset( $actions['stick'] );
    420425        }
    421        
    422426
    423427        return $actions;
     
    503507                } else {
    504508                    bbp_unstick_topic( $post->ID );
    505                 }
     509                        }
    506510
    507511                return true;
Note: See TracChangeset for help on using the changeset viewer.