Skip to:
Content

BuddyPress.org

Changeset 10005


Ignore:
Timestamp:
07/10/2015 09:55:53 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Admin: Add new wp-list-table class to Activity & Groups list tables.

The commit ensures BuddyPress's list-table implementation integrates nicely wih WordPress's default administration styling. It also addresses a WordPress 4.3 compatibilty issue introduced in [WP33016] that left the new .toggle-row button visible on our rows.

See #6465. For 2.4 (trunk)

Location:
trunk/src
Files:
2 edited

Legend:

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

    r9841 r10005  
    12201220                $this->display_tablenav( 'top' ); ?>
    12211221
    1222                 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
     1222                <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
    12231223                        <thead>
    12241224                                <tr>
  • trunk/src/bp-groups/bp-groups-admin.php

    r9907 r10005  
    13161316                $this->display_tablenav( 'top' ); ?>
    13171317
    1318                 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
     1318                <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
    13191319                        <thead>
    13201320                                <tr>
Note: See TracChangeset for help on using the changeset viewer.