Making WordPress.org

Changeset 5645


Ignore:
Timestamp:
07/11/2017 02:20:22 PM (8 years ago)
Author:
SergeyBiryukov
Message:

Support Forums: Display user notes before post content, closer to "Toggle user notes" link.

Remove unused $post_id variable from ::delete_user_note().

See #2272.

File:
1 edited

Legend:

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

    r5641 r5645  
    3737        add_action( 'bbp_theme_after_reply_author_details', array( $this, 'add_user_notes_toggle_link' ) );
    3838
    39         add_action( 'bbp_theme_after_topic_content',        array( $this, 'display_user_notes_in_content' ) );
    40         add_action( 'bbp_theme_after_reply_content',        array( $this, 'display_user_notes_in_content' ) );
     39        add_action( 'bbp_theme_before_topic_content',       array( $this, 'display_user_notes_in_content' ) );
     40        add_action( 'bbp_theme_before_reply_content',       array( $this, 'display_user_notes_in_content' ) );
    4141        add_action( 'bbp_template_after_user_profile',      array( $this, 'display_user_notes_in_profile' ) );
    4242    }
     
    145145        }
    146146
    147         if ( isset( $user_notes[ $note_id ] ) ) {
    148             $post_id = $user_notes[ $note_id ]->post_id;
    149             unset( $user_notes[ $note_id ] );
    150         } else {
    151             $post_id = 0;
    152         }
     147        unset( $user_notes[ $note_id ] );
    153148
    154149        // Reindex the array from 1.
Note: See TracChangeset for help on using the changeset viewer.