Make WordPress Core


Ignore:
Timestamp:
07/09/2019 09:10:11 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove extra whitespace in list tables' column_cb() methods.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-links-list-table.php

    r43571 r45617  
    170170    public function column_cb( $link ) {
    171171        ?>
    172         <label class="screen-reader-text" for="cb-select-<?php echo $link->link_id; ?>"><?php echo sprintf( __( 'Select %s' ), $link->link_name ); ?></label>
     172        <label class="screen-reader-text" for="cb-select-<?php echo $link->link_id; ?>">
     173            <?php printf( __( 'Select %s' ), $link->link_name ); ?>
     174        </label>
    173175        <input type="checkbox" name="linkcheck[]" id="cb-select-<?php echo $link->link_id; ?>" value="<?php echo esc_attr( $link->link_id ); ?>" />
    174176        <?php
Note: See TracChangeset for help on using the changeset viewer.