Changeset 2798 for trunk/bp-xprofile/bp-xprofile-templatetags.php
- Timestamp:
- 03/03/2010 06:53:59 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/bp-xprofile/bp-xprofile-templatetags.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-xprofile/bp-xprofile-templatetags.php
r2695 r2798 61 61 } elseif ( $this->current_group + 1 == $this->group_count ) { 62 62 do_action('xprofile_template_loop_end'); 63 / / Do some cleaning up after the loop63 /* Do some cleaning up after the loop */ 64 64 $this->rewind_groups(); 65 65 } … … 75 75 $group = $this->next_group(); 76 76 77 if ( 0 == $this->current_group ) / / loop has just started77 if ( 0 == $this->current_group ) /* loop has just started */ 78 78 do_action('xprofile_template_loop_start'); 79 79 } … … 116 116 return true; 117 117 } elseif ( $this->current_field + 1 == $this->field_count ) { 118 / / Do some cleaning up after the loop118 /* Do some cleaning up after the loop */ 119 119 $this->rewind_fields(); 120 120 } … … 547 547 function bp_get_profile_field_data( $args = '' ) { 548 548 $defaults = array( 549 'field' => false, / / Field name or ID.549 'field' => false, /* Field name or ID. */ 550 550 'user_id' => $bp->displayed_user->id 551 );551 ); 552 552 553 553 $r = wp_parse_args( $args, $defaults ); … … 657 657 $profile_group_id = 1; 658 658 659 return apply_filters( 'bp_get_current_profile_group_id', $profile_group_id ); // admin/profile/edit/[group-id] 659 /* admin/profile/edit/[group-id] */ 660 return apply_filters( 'bp_get_current_profile_group_id', $profile_group_id ); 660 661 } 661 662
Note: See TracChangeset
for help on using the changeset viewer.