Skip to:
Content

BuddyPress.org

Ticket #5418: 5418.01.patch

File 5418.01.patch, 4.3 KB (added by r-a-y, 11 years ago)
  • bp-activity/bp-activity-screens.php

    class BP_Activity_Theme_Compat { 
    385385                        'post_author'    => 0,
    386386                        'post_date'      => 0,
    387387                        'post_content'   => '',
    388                         'post_type'      => 'bp_activity',
     388                        'post_type'      => 'page',
    389389                        'post_status'    => 'publish',
    390390                        'is_page'        => true,
    391391                        'comment_status' => 'closed'
    class BP_Activity_Theme_Compat { 
    438438                        'post_author'    => 0,
    439439                        'post_date'      => 0,
    440440                        'post_content'   => '',
    441                         'post_type'      => 'bp_activity',
     441                        'post_type'      => 'page',
    442442                        'post_status'    => 'publish',
    443443                        'is_page'        => true,
    444444                        'comment_status' => 'closed'
  • bp-blogs/bp-blogs-screens.php

    class BP_Blogs_Theme_Compat { 
    149149                        'post_author'    => 0,
    150150                        'post_date'      => 0,
    151151                        'post_content'   => '',
    152                         'post_type'      => 'bp_blogs',
     152                        'post_type'      => 'page',
    153153                        'post_status'    => 'publish',
    154154                        'is_page'        => true,
    155155                        'comment_status' => 'closed'
    class BP_Blogs_Theme_Compat { 
    212212                        'post_author'    => 0,
    213213                        'post_date'      => 0,
    214214                        'post_content'   => '',
    215                         'post_type'      => 'bp_group',
     215                        'post_type'      => 'page',
    216216                        'post_status'    => 'publish',
    217217                        'is_page'        => true,
    218218                        'comment_status' => 'closed'
  • bp-forums/bp-forums-screens.php

    class BP_Forum_Legacy_Theme_Compat { 
    216216                        'post_author'    => 0,
    217217                        'post_date'      => 0,
    218218                        'post_content'   => '',
    219                         'post_type'      => 'bp_forum',
     219                        'post_type'      => 'page',
    220220                        'post_status'    => 'publish',
    221221                        'is_page'        => true,
    222222                        'comment_status' => 'closed'
  • bp-groups/bp-groups-screens.php

    class BP_Groups_Theme_Compat { 
    10291029                        'post_author'    => 0,
    10301030                        'post_date'      => 0,
    10311031                        'post_content'   => '',
    1032                         'post_type'      => 'bp_group',
     1032                        'post_type'      => 'page',
    10331033                        'post_status'    => 'publish',
    10341034                        'is_page'        => true,
    10351035                        'comment_status' => 'closed'
    class BP_Groups_Theme_Compat { 
    10901090                        'post_author'    => 0,
    10911091                        'post_date'      => 0,
    10921092                        'post_content'   => '',
    1093                         'post_type'      => 'bp_group',
     1093                        'post_type'      => 'page',
    10941094                        'post_status'    => 'publish',
    10951095                        'is_page'        => true,
    10961096                        'comment_status' => 'closed'
    class BP_Groups_Theme_Compat { 
    11501150                        'post_author'    => 0,
    11511151                        'post_date'      => 0,
    11521152                        'post_content'   => '',
    1153                         'post_type'      => 'bp_group',
     1153                        'post_type'      => 'page',
    11541154                        'post_status'    => 'publish',
    11551155                        'is_page'        => true,
    11561156                        'comment_status' => 'closed'
  • bp-members/bp-members-screens.php

    class BP_Members_Theme_Compat { 
    367367                        'post_author'    => 0,
    368368                        'post_date'      => 0,
    369369                        'post_content'   => '',
    370                         'post_type'      => 'bp_members',
     370                        'post_type'      => 'page',
    371371                        'post_status'    => 'publish',
    372372                        'is_page'        => true,
    373373                        'comment_status' => 'closed'
    class BP_Members_Theme_Compat { 
    427427                        'post_author'    => 0,
    428428                        'post_date'      => 0,
    429429                        'post_content'   => '',
    430                         'post_type'      => 'bp_members',
     430                        'post_type'      => 'page',
    431431                        'post_status'    => 'publish',
    432432                        'is_page'        => true,
    433433                        'comment_status' => 'closed'
    class BP_Registration_Theme_Compat { 
    535535                        }
    536536                }
    537537
    538                 $post_type = bp_is_register_page() ? 'bp_register' : 'bp_activate';
    539 
    540538                bp_theme_compat_reset_post( array(
    541539                        'ID'             => 0,
    542540                        'post_title'     => $title,
    543541                        'post_author'    => 0,
    544542                        'post_date'      => 0,
    545543                        'post_content'   => '',
    546                         'post_type'      => $post_type,
     544                        'post_type'      => 'page',
    547545                        'post_status'    => 'publish',
    548546                        'is_page'        => true,
    549547                        'comment_status' => 'closed'