Changeset 54071 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 09/05/2022 05:17:21 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r53868 r54071 556 556 } 557 557 558 $out = '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">';558 $output = '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">'; 559 559 560 560 $i = 0; … … 563 563 ++$i; 564 564 565 $sep = ( $i < $action_count ) ? ' | ' : '';566 567 $out .= "<span class='$action'>$link$sep</span>";568 } 569 570 $out .= '</div>';571 572 $out .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>';573 574 return $out ;565 $separator = ( $i < $action_count ) ? ' | ' : ''; 566 567 $output .= "<span class='$action'>{$link}{$separator}</span>"; 568 } 569 570 $output .= '</div>'; 571 572 $output .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . __( 'Show more details' ) . '</span></button>'; 573 574 return $output; 575 575 } 576 576
Note: See TracChangeset
for help on using the changeset viewer.