Changes between Initial Version and Version 1 of Ticket #58789
- Timestamp:
- 10/30/2023 07:20:10 PM (21 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58789
- Property Keywords needs-patch added
-
Property
Component
changed from
General
toAdministration
-
Ticket #58789 – Description
initial v1 1 1 Commonly getting not countable for the users lists, across many sites not sure of the source of the issue, but easy solution seems to be to modify. 2 2 3 /wp-admin/includes/class-wp-list-table.php 3 `/wp-admin/includes/class-wp-list-table.php` 4 4 5 {{{ 5 6 protected function row_actions( $actions, $always_visible = false ) 6 7 ++ if(!isset($actions)) { return ''; } … … 10 11 return ''; 11 12 } 12 13 14 15 16 13 }}}