Ticket #5156: bp-groups-screens.php.patch
File bp-groups-screens.php.patch, 1.0 KB (added by , 11 years ago) |
---|
-
bp-groups/bp-groups-screens.php
1048 1048 * @since BuddyPress (1.7) 1049 1049 */ 1050 1050 public function directory_content() { 1051 bp_buffer_template_part( 'groups/index');1051 return bp_buffer_template_part( 'groups/index', null, false ); 1052 1052 } 1053 1053 1054 1054 /** Create ****************************************************************/ … … 1109 1109 * @since BuddyPress (1.7) 1110 1110 */ 1111 1111 public function create_content() { 1112 bp_buffer_template_part( 'groups/create');1112 return bp_buffer_template_part( 'groups/create', null, false ); 1113 1113 } 1114 1114 1115 1115 /** Single ****************************************************************/ … … 1169 1169 * @since BuddyPress (1.7) 1170 1170 */ 1171 1171 public function single_content() { 1172 bp_buffer_template_part( 'groups/single/home');1172 return bp_buffer_template_part( 'groups/single/home', null, false ); 1173 1173 } 1174 1174 } 1175 1175 new BP_Groups_Theme_Compat();