Skip to:
Content

bbPress.org

Ticket #2858: 2858.1.patch

File 2858.1.patch, 802 bytes (added by cfinke, 11 years ago)

Includes the post title for the first post in a thread. Won't affect subsequent replies.

  • trunk/includes/extend/akismet.php

     
    162162                        'comment_author'                 => $user_data['name'],
    163163                        'comment_author_email'           => $user_data['email'],
    164164                        'comment_author_url'             => $user_data['website'],
    165                         'comment_content'                => $post_data['post_content'],
     165                        'comment_content'                => trim( $post_data['post_title'] . "\n\n" . $post_data['post_content'] ),
    166166                        'comment_post_ID'                => $post_data['post_parent'],
    167167                        'comment_type'                   => $post_data['post_type'],
    168168                        'comment_total'                  => $user_data['total_posts'],