Skip to:
Content

BuddyPress.org

Changeset 7375


Ignore:
Timestamp:
09/09/2013 01:21:53 PM (11 years ago)
Author:
boonebgorges
Message:

Fix even/odd/alternate row classes in Groups and Activity admin

Fixes #5163

Props imath

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-admin.php

    r7352 r7375  
    11061106     */
    11071107    function single_row( $item ) {
    1108         static $row_class = '';
    1109 
    1110         if ( empty( $row_class ) ) {
    1111             $row_class = ' class="alternate"';
     1108        static $even = false;
     1109
     1110        if ( $even ) {
     1111            $row_class = ' class="even"';
    11121112        } else {
    1113             $row_class = '';
     1113            $row_class = ' class="alternate odd"';
    11141114        }
    11151115
     
    11171117        echo $this->single_row_columns( $item );
    11181118        echo '</tr>';
     1119
     1120        $even = ! $even;
    11191121    }
    11201122
  • trunk/bp-groups/bp-groups-admin.php

    r7360 r7375  
    11921192     */
    11931193    function single_row( $item = array() ) {
    1194         static $row_class = '';
    1195 
    1196         if ( empty( $row_class ) ) {
     1194        static $even = false;
     1195
     1196        if ( $even ) {
     1197            $row_class = ' class="even"';
     1198        } else {
    11971199            $row_class = ' class="alternate odd"';
    1198         } else {
    1199             $row_class = ' class="even"';
    12001200        }
    12011201
     
    12031203        echo $this->single_row_columns( $item );
    12041204        echo '</tr>';
     1205
     1206        $even = ! $even;
    12051207    }
    12061208
Note: See TracChangeset for help on using the changeset viewer.