Skip to:
Content

BuddyPress.org

Ticket #5156: bp-groups-screens.php.patch

File bp-groups-screens.php.patch, 1.0 KB (added by ddean, 11 years ago)
  • 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();