Changeset 3363
- Timestamp:
- 07/14/2011 01:47:10 AM (15 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbp-admin/importers/bbpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/importers/bbpress.php
r3349 r3363 894 894 'comment_status' => 'closed', 895 895 'ping_status' => 'closed', 896 'post_name' => $forum->forum_slug,896 'post_name' => ( strlen( $forum->forum_slug ) > 200 ) ? sanitize_title_with_dashes( $forum->forum_slug ) : $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(), … … 951 951 'post_content' => $first_post->post_text, 952 952 'post_title' => $topic->topic_title, 953 'post_name' => $topic->topic_slug,953 'post_name' => ( strlen( $topic->topic_slug ) > 200 ) ? sanitize_title_with_dashes( $topic->topic_slug ) : $topic->topic_slug, 954 954 'post_status' => $topic_status, 955 955 'post_date_gmt' => $topic->topic_start_time,
Note: See TracChangeset
for help on using the changeset viewer.