- Timestamp:
- 01/29/2020 12:43:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r46341 r47122 96 96 $per_page = 36; 97 97 98 // These are the tabs which are shown on the page 98 // These are the tabs which are shown on the page. 99 99 $tabs = array(); 100 100 … … 472 472 } 473 473 474 // Display the group heading if there is one 474 // Display the group heading if there is one. 475 475 if ( isset( $plugin['group'] ) && $plugin['group'] != $group ) { 476 476 if ( isset( $this->groups[ $plugin['group'] ] ) ) { … … 483 483 } 484 484 485 // Starting a new group, close off the divs of the last one 485 // Starting a new group, close off the divs of the last one. 486 486 if ( ! empty( $group ) ) { 487 487 echo '</div></div>'; … … 489 489 490 490 echo '<div class="plugin-group"><h3>' . esc_html( $group_name ) . '</h3>'; 491 // needs an extra wrapping div for nth-child selectors to work491 // Needs an extra wrapping div for nth-child selectors to work. 492 492 echo '<div class="plugin-items">'; 493 493 … … 769 769 } 770 770 771 // Close off the group divs of the last one 771 // Close off the group divs of the last one. 772 772 if ( ! empty( $group ) ) { 773 773 echo '</div></div>';
Note: See TracChangeset
for help on using the changeset viewer.