Changeset 43303 for trunk/src/wp-admin/includes/user.php
- Timestamp:
- 05/21/2018 01:02:55 PM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/user.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/user.php
r43256 r43303 1422 1422 */ 1423 1423 public function column_email( $item ) { 1424 /** This filter is documented in wp-admin/includes/ajax-actions.php */ 1424 1425 $exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() ); 1425 1426 $exporters_count = count( $exporters ); … … 1462 1463 break; 1463 1464 case 'request-confirmed': 1465 /** This filter is documented in wp-admin/includes/ajax-actions.php */ 1464 1466 $exporters = apply_filters( 'wp_privacy_personal_data_exporters', array() ); 1465 1467 $exporters_count = count( $exporters ); … … 1534 1536 $status = $item->status; 1535 1537 if ( 'request-confirmed' !== $status ) { 1538 /** This filter is documented in wp-admin/includes/ajax-actions.php */ 1536 1539 $erasers = apply_filters( 'wp_privacy_personal_data_erasers', array() ); 1537 1540 $erasers_count = count( $erasers ); … … 1574 1577 break; 1575 1578 case 'request-confirmed': 1579 /** This filter is documented in wp-admin/includes/ajax-actions.php */ 1576 1580 $erasers = apply_filters( 'wp_privacy_personal_data_erasers', array() ); 1577 1581 $erasers_count = count( $erasers );
Note: See TracChangeset
for help on using the changeset viewer.