Make WordPress Core

Ticket #38296: 38296.2.patch

File 38296.2.patch, 634 bytes (added by joelcj91, 6 years ago)

Patch refresh

  • src/wp-admin/includes/class-wp-list-table.php

     
    520520                $out = '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">';
    521521                foreach ( $actions as $action => $link ) {
    522522                        ++$i;
    523                         ( $i == $action_count ) ? $sep = '' : $sep = ' | ';
     523                        $sep = ( $i == $action_count ) ? '' : ' | ';
    524524                        $out                          .= "<span class='$action'>$link$sep</span>";
    525525                }
    526526                $out .= '</div>';