Ticket #5173: 5173.diff
File 5173.diff, 2.8 KB (added by , 11 years ago) |
---|
-
bp-themes/bp-default/groups/groups-loop.php
37 37 38 38 <?php while ( bp_groups() ) : bp_the_group(); ?> 39 39 40 <li >40 <li <?php bp_group_class();?>> 41 41 <div class="item-avatar"> 42 42 <a href="<?php bp_group_permalink(); ?>"><?php bp_group_avatar( 'type=thumb&width=50&height=50' ); ?></a> 43 43 </div> -
bp-templates/bp-legacy/buddypress/groups/groups-loop.php
37 37 38 38 <?php while ( bp_groups() ) : bp_the_group(); ?> 39 39 40 <li >40 <li <?php bp_group_class();?>> 41 41 <div class="item-avatar"> 42 42 <a href="<?php bp_group_permalink(); ?>"><?php bp_group_avatar( 'type=thumb&width=50&height=50' ); ?></a> 43 43 </div> -
bp-groups/bp-groups-admin.php
1192 1192 */ 1193 1193 function single_row( $item = array() ) { 1194 1194 static $even = false; 1195 $row_classes = array(); 1195 1196 1196 1197 if ( $even ) { 1197 $row_class = ' class="even"';1198 $row_classes = array( 'even' ); 1198 1199 } else { 1199 $row_class = ' class="alternate odd"';1200 $row_classes = array( 'alternate', 'odd' ); 1200 1201 } 1201 1202 1203 $row_classes = apply_filters( 'bp_groups_admin_row_class', $row_classes, $item['id'] ); 1204 $row_class = ' class="' .implode( ' ', $row_classes ) .'"'; 1205 1202 1206 echo '<tr' . $row_class . ' id="group-' . esc_attr( $item['id'] ) . '" data-parent_id="' . esc_attr( $item['id'] ) . '" data-root_id="' . esc_attr( $item['id'] ) . '">'; 1203 1207 echo $this->single_row_columns( $item ); 1204 1208 echo '</tr>'; -
bp-groups/bp-groups-widgets.php
69 69 70 70 <ul id="groups-list" class="item-list"> 71 71 <?php while ( bp_groups() ) : bp_the_group(); ?> 72 <li >72 <li <?php bp_group_class();?>> 73 73 <div class="item-avatar"> 74 74 <a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_avatar_thumb() ?></a> 75 75 </div> … … 172 172 if ( bp_has_groups( 'type=' . $type . '&per_page=' . $_POST['max_groups'] . '&max=' . $_POST['max_groups'] ) ) : ?> 173 173 <?php echo "0[[SPLIT]]"; ?> 174 174 <?php while ( bp_groups() ) : bp_the_group(); ?> 175 <li >175 <li <?php bp_group_class();?>> 176 176 <div class="item-avatar"> 177 177 <a href="<?php bp_group_permalink() ?>"><?php bp_group_avatar_thumb() ?></a> 178 178 </div>