Skip to:
Content

bbPress.org

Ticket #1564: 1564.001.diff

File 1564.001.diff, 1.1 KB (added by cnorris23, 14 years ago)
  • bbp-admin/importers/bbpress.php

     
    893893                                                'post_status'    => 'publish',
    894894                                                'comment_status' => 'closed',
    895895                                                'ping_status'    => 'closed',
    896                                                 'post_name'      => $forum->forum_slug,
     896                                                'post_name'      => urldecode( $forum->forum_slug ),
    897897                                                'post_parent'    => !empty( $forum->forum_parent ) ? $forum_map[$forum->forum_parent] : 0,
    898898                                                'post_type'      => bbp_get_forum_post_type(),
    899899                                                'menu_order'     => $forum->forum_order
     
    950950                                                        'post_author'   => $topic->topic_poster,
    951951                                                        'post_content'  => $first_post->post_text,
    952952                                                        'post_title'    => $topic->topic_title,
    953                                                         'post_name'     => $topic->topic_slug,
     953                                                        'post_name'     => urldecode( $topic->topic_slug ),
    954954                                                        'post_status'   => $topic_status,
    955955                                                        'post_date_gmt' => $topic->topic_start_time,
    956956                                                        'post_date'     => get_date_from_gmt( $topic->topic_start_time ),