Skip to:
Content

BuddyPress.org

Ticket #5156: all-screens.patch

File all-screens.patch, 4.1 KB (added by ddean, 11 years ago)

Expanded to include all components

  • bp-members/bp-members-screens.php

     
    369369         * @since BuddyPress (1.7)
    370370         */
    371371        public function directory_content() {
    372                 bp_buffer_template_part( 'members/index' );
     372                return bp_buffer_template_part( 'members/index', null, false );
    373373        }
    374374
    375375        /** Single ****************************************************************/
     
    429429         * @since BuddyPress (1.7)
    430430         */
    431431        public function single_dummy_content() {
    432                 bp_buffer_template_part( 'members/single/home' );
     432                return bp_buffer_template_part( 'members/single/home', null, false );
    433433        }
    434434}
    435435new BP_Members_Theme_Compat();
     
    546546         */
    547547        public function dummy_content() {
    548548                if ( bp_is_register_page() ) {
    549                         bp_buffer_template_part( 'members/register' );
     549                        return bp_buffer_template_part( 'members/register', null, false );
    550550                } else {
    551                         bp_buffer_template_part( 'members/activate' );
     551                        return bp_buffer_template_part( 'members/activate', null, false );
    552552                }
    553553        }
    554554}
  • bp-forums/bp-forums-screens.php

     
    216216         * @since BuddyPress (1.7)
    217217         */
    218218        public function directory_content() {
    219                 bp_buffer_template_part( 'forums/index' );
     219                return bp_buffer_template_part( 'forums/index', null, false );
    220220        }
    221221}
    222222new BP_Forum_Legacy_Theme_Compat();
  • bp-groups/bp-groups-screens.php

     
    10481048         * @since BuddyPress (1.7)
    10491049         */
    10501050        public function directory_content() {
    1051                 bp_buffer_template_part( 'groups/index' );
     1051                return bp_buffer_template_part( 'groups/index', null, false );
    10521052        }
    10531053
    10541054        /** Create ****************************************************************/
     
    11091109         * @since BuddyPress (1.7)
    11101110         */
    11111111        public function create_content() {
    1112                 bp_buffer_template_part( 'groups/create' );
     1112                return bp_buffer_template_part( 'groups/create', null, false );
    11131113        }
    11141114
    11151115        /** Single ****************************************************************/
     
    11691169         * @since BuddyPress (1.7)
    11701170         */
    11711171        public function single_content() {
    1172                 bp_buffer_template_part( 'groups/single/home' );
     1172                return bp_buffer_template_part( 'groups/single/home', null, false );
    11731173        }
    11741174}
    11751175new BP_Groups_Theme_Compat();
  • bp-blogs/bp-blogs-screens.php

     
    156156         * @since BuddyPress (1.7)
    157157         */
    158158        public function directory_content() {
    159                 bp_buffer_template_part( 'blogs/index' );
     159                return bp_buffer_template_part( 'blogs/index', null, false );
    160160        }
    161161
    162162        /** Create ****************************************************************/
     
    217217         * @since BuddyPress (1.7)
    218218         */
    219219        public function create_content() {
    220                 bp_buffer_template_part( 'blogs/create' );
     220                return bp_buffer_template_part( 'blogs/create', null, false );
    221221        }
    222222}
    223223new BP_Blogs_Theme_Compat();
  • bp-activity/bp-activity-screens.php

     
    412412         * @since BuddyPress (1.7)
    413413         */
    414414        public function directory_content() {
    415                 bp_buffer_template_part( 'activity/index' );
     415                return bp_buffer_template_part( 'activity/index', null, false );
    416416        }
    417417
    418418        /** Single ****************************************************************/
     
    465465         * @since BuddyPress (1.7)
    466466         */
    467467        public function single_dummy_content() {
    468                 bp_buffer_template_part( 'activity/single/home' );
     468                return bp_buffer_template_part( 'activity/single/home', null, false );
    469469        }
    470470}
    471471new BP_Activity_Theme_Compat();