Making WordPress.org

Ticket #5031: 5031.diff

File 5031.diff, 1.6 KB (added by dufresnesteven, 5 years ago)

Removes the button above the table if we are looking at reviews.

  • class-hooks.php

     
    1818                add_filter( 'old_slug_redirect_post_id',       array( $this, 'disable_wp_old_slug_redirect' ) );
    1919                add_action( 'template_redirect',               array( $this, 'redirect_update_php_page' ) );
    2020                add_action( 'template_redirect',               array( $this, 'redirect_legacy_user_structure' ) );
    21                 add_filter( 'wp_insert_post_data',             array( $this, 'set_post_date_gmt_for_pending_posts' ) );
     21                add_filter( 'wp_insert_post_data',             array( $this, 'set_post_date_gmt_for_pending_posts' ) );
    2222                add_action( 'wp_print_footer_scripts',         array( $this, 'replace_quicktags_blockquote_button' ) );
    2323
    2424                // Output rel="canonical" meta tag. Runs before WP's rel_canonical to unhook that if needed.
     
    631631
    632632                                echo '<div class="bbp-create-topic-wrapper">';
    633633                                if ( $searchform ) {
    634                                         printf(
    635                                                 /* translators: 1: markup for forums search field which is primary action, 2: markup for button to create topic */
    636                                                 __( '%1$s or %2$s', 'wporg-forums' ),
    637                                                 $searchform,
    638                                                 $btn
    639                                         );
     634
     635                                        // We already have a review button in the control rendered above this one.
     636                                        if( ! $is_reviews ) {
     637                                                printf(
     638                                                        /* translators: 1: markup for forums search field which is primary action, 2: markup for button to create topic */
     639                                                        __( '%1$s or %2$s', 'wporg-forums' ),
     640                                                        $searchform,
     641                                                        $btn
     642                                                );
     643                                        } else {
     644                                                echo $searchform;
     645                                        }
    640646                                } else {
    641647                                        echo $btn;
    642648                                }