Skip to:
Content

BuddyPress.org

Ticket #3253: 3253.diff

File 3253.diff, 2.0 KB (added by boonebgorges, 14 years ago)
  • bp-activity/bp-activity-template.php

    function bp_activity_comments( $args = '' ) { 
    850850                                $content .= '</div>';
    851851                                $content .= '<div class="acomment-content">' . apply_filters( 'bp_get_activity_content', $comment_child->content ) . '</div>';
    852852
     853                                if ( is_user_logged_in() ) {
     854                                        $content .= '<form action="' . bp_get_activity_comment_form_action() . '" method="post" id="ac-form-' . $comment_child->id .  '" class="ac-form">';
     855                                       
     856                                        $content .= '<div class="ac-reply-avatar">' .  bp_get_loggedin_user_avatar( 'width=' . BP_AVATAR_THUMB_WIDTH . '&height=' . BP_AVATAR_THUMB_HEIGHT ) . '</div>';
     857                                       
     858                                        $content .= '<div class="ac-reply-content">';
     859                                       
     860                                        $content .= '<div class="ac-textarea">                          <textarea id="ac-input-' . $comment_child->id . '" class="ac-input" name="ac_input_' . $comment_child->id . ' "></textarea></div>';
     861                                       
     862                                        $content .= '<input type="submit" name="ac_form_submit" value="' . __( 'Post', 'buddypress' ) . ' &rarr;" />';
     863                                       
     864                                        $content .= '&nbsp; ' . __( 'or press esc to cancel.', 'buddypress' );
     865                                       
     866                                        $content .= '<input type="hidden" name="comment_form_id" value="' . $comment_child->id . '" />';                                       
     867                                       
     868                                        $content .= '</div>';
     869                                       
     870                                        $content .= wp_nonce_field( 'new_activity_comment', '_wpnonce_new_activity_comment' );
     871                                       
     872                                        $content .= '</form>';
     873                                }
     874
    853875                                $content .= bp_activity_recurse_comments( $comment_child );
    854876                                $content .= '</li>';
    855877
    function bp_activity_css_class() { 
    967989                        'new_member'
    968990                ) );
    969991
    970                 $class = '';
     992                $class = ' activity-root';
    971993                if ( in_array( $activities_template->activity->type, (array)$mini_activity_actions ) || empty( $activities_template->activity->content ) )
    972                         $class = ' mini';
     994                        $class .= ' mini';
    973995
    974996                if ( bp_activity_get_comment_count() && bp_activity_can_comment() )
    975997                        $class .= ' has-comments';