Make WordPress Core

Changeset 43192 for branches/4.9


Ignore:
Timestamp:
05/09/2018 03:07:21 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Privacy: Add id attribute to WP_Privacy_Requests_Table and WP_Privacy_Data_Export_Requests_Table rows, for consistency with other post list tables.

Props desrosj.
Merges [43191] to the 4.9 branch.
Fixes #44015.

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/src/wp-admin/includes/user.php

    r43188 r43192  
    13211321        $status = $item->status;
    13221322
    1323         echo '<tr class="status-' . esc_attr( $status ) . '">';
     1323        echo '<tr id="request-' . esc_attr( $item->ID ) . '" class="status-' . esc_attr( $status ) . '">';
    13241324        $this->single_row_columns( $item );
    13251325        echo '</tr>';
Note: See TracChangeset for help on using the changeset viewer.