Ticket #1564: 1564.001.diff
File 1564.001.diff, 1.1 KB (added by , 14 years ago) |
---|
-
bbp-admin/importers/bbpress.php
893 893 'post_status' => 'publish', 894 894 'comment_status' => 'closed', 895 895 'ping_status' => 'closed', 896 'post_name' => $forum->forum_slug,896 'post_name' => urldecode( $forum->forum_slug ), 897 897 'post_parent' => !empty( $forum->forum_parent ) ? $forum_map[$forum->forum_parent] : 0, 898 898 'post_type' => bbp_get_forum_post_type(), 899 899 'menu_order' => $forum->forum_order … … 950 950 'post_author' => $topic->topic_poster, 951 951 'post_content' => $first_post->post_text, 952 952 'post_title' => $topic->topic_title, 953 'post_name' => $topic->topic_slug,953 'post_name' => urldecode( $topic->topic_slug ), 954 954 'post_status' => $topic_status, 955 955 'post_date_gmt' => $topic->topic_start_time, 956 956 'post_date' => get_date_from_gmt( $topic->topic_start_time ),