Changeset 7386
- Timestamp:
- 09/17/2013 05:37:21 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-screens.php
r7212 r7386 413 413 */ 414 414 public function directory_content() { 415 bp_buffer_template_part( 'activity/index');415 return bp_buffer_template_part( 'activity/index', null, false ); 416 416 } 417 417 … … 466 466 */ 467 467 public function single_dummy_content() { 468 bp_buffer_template_part( 'activity/single/home');468 return bp_buffer_template_part( 'activity/single/home', null, false ); 469 469 } 470 470 } -
trunk/bp-blogs/bp-blogs-screens.php
r7353 r7386 157 157 */ 158 158 public function directory_content() { 159 bp_buffer_template_part( 'blogs/index');159 return bp_buffer_template_part( 'blogs/index', null, false ); 160 160 } 161 161 … … 218 218 */ 219 219 public function create_content() { 220 bp_buffer_template_part( 'blogs/create');220 return bp_buffer_template_part( 'blogs/create', null, false ); 221 221 } 222 222 } -
trunk/bp-forums/bp-forums-screens.php
r7298 r7386 217 217 */ 218 218 public function directory_content() { 219 bp_buffer_template_part( 'forums/index');219 return bp_buffer_template_part( 'forums/index', null, false ); 220 220 } 221 221 } -
trunk/bp-groups/bp-groups-screens.php
r7343 r7386 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 … … 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 … … 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 } -
trunk/bp-members/bp-members-screens.php
r7303 r7386 370 370 */ 371 371 public function directory_content() { 372 bp_buffer_template_part( 'members/index');372 return bp_buffer_template_part( 'members/index', null, false ); 373 373 } 374 374 … … 430 430 */ 431 431 public function single_dummy_content() { 432 bp_buffer_template_part( 'members/single/home');432 return bp_buffer_template_part( 'members/single/home', null, false ); 433 433 } 434 434 } … … 547 547 public function dummy_content() { 548 548 if ( bp_is_register_page() ) { 549 bp_buffer_template_part( 'members/register');549 return bp_buffer_template_part( 'members/register', null, false ); 550 550 } else { 551 bp_buffer_template_part( 'members/activate');551 return bp_buffer_template_part( 'members/activate', null, false ); 552 552 } 553 553 }
Note: See TracChangeset
for help on using the changeset viewer.