diff --git src/bp-activity/bp-activity-admin.php src/bp-activity/bp-activity-admin.php
index 6df7dd3..2cc8fae 100644
|
|
class BP_Activity_List_Table extends WP_List_Table { |
1199 | 1199 | } |
1200 | 1200 | |
1201 | 1201 | /** |
| 1202 | * Get name of default primary column name and make sure nothing is broken in |
| 1203 | * configurations < WP 4.0 |
| 1204 | * |
| 1205 | * @since 2.3.4 |
| 1206 | * @access protected |
| 1207 | * |
| 1208 | * @return string |
| 1209 | */ |
| 1210 | protected function get_primary_column_name() { |
| 1211 | if ( ! method_exists( 'WP_List_Table', 'get_primary_column_name' ) ) { |
| 1212 | return $this->get_default_primary_column_name(); |
| 1213 | } |
| 1214 | |
| 1215 | parent::get_primary_column_name(); |
| 1216 | } |
| 1217 | |
| 1218 | /** |
1202 | 1219 | * Get an array of all the columns on the page. |
1203 | 1220 | * |
1204 | 1221 | * @since 1.6.0 |
… |
… |
class BP_Activity_List_Table extends WP_List_Table { |
1452 | 1469 | * unnecessary <button> addition. |
1453 | 1470 | * |
1454 | 1471 | * @since 2.3.3 |
1455 | | * @access protected |
| 1472 | * @access public |
1456 | 1473 | * |
1457 | 1474 | * @param array $actions The list of actions |
1458 | 1475 | * @param bool $always_visible Whether the actions should be always visible |
1459 | 1476 | * @return string |
1460 | 1477 | */ |
1461 | | protected function row_actions( $actions, $always_visible = false ) { |
| 1478 | public function row_actions( $actions, $always_visible = false ) { |
1462 | 1479 | $action_count = count( $actions ); |
1463 | 1480 | $i = 0; |
1464 | 1481 | |
diff --git src/bp-groups/bp-groups-admin.php src/bp-groups/bp-groups-admin.php
index 0abc180..ee987fc 100644
|
|
class BP_Groups_List_Table extends WP_List_Table { |
1500 | 1500 | * unnecessary <button> addition. |
1501 | 1501 | * |
1502 | 1502 | * @since 2.3.3 |
1503 | | * @access protected |
| 1503 | * @access public |
1504 | 1504 | * |
1505 | 1505 | * @param array $actions The list of actions |
1506 | 1506 | * @param bool $always_visible Whether the actions should be always visible |
1507 | 1507 | * @return string |
1508 | 1508 | */ |
1509 | | protected function row_actions( $actions, $always_visible = false ) { |
| 1509 | public function row_actions( $actions, $always_visible = false ) { |
1510 | 1510 | $action_count = count( $actions ); |
1511 | 1511 | $i = 0; |
1512 | 1512 | |