Changeset 43083 for branches/4.9/src/wp-includes/default-filters.php
- Timestamp:
- 05/02/2018 01:00:46 AM (8 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
src/wp-includes/default-filters.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-includes/default-filters.php
r43080 r43083 302 302 add_action( 'do_robots', 'do_robots' ); 303 303 add_action( 'set_comment_cookies', 'wp_set_comment_cookies', 10, 2 ); 304 add_filter( 'wp_privacy_personal_data_exporters', 'wp_register_comment_personal_data_exporter', 10 );305 add_filter( 'wp_privacy_personal_data_erasers', 'wp_register_comment_personal_data_eraser', 10 );306 304 add_action( 'sanitize_comment_cookies', 'sanitize_comment_cookies' ); 307 305 add_action( 'admin_print_scripts', 'print_emoji_detection_script' ); … … 323 321 add_action( 'welcome_panel', 'wp_welcome_panel' ); 324 322 323 // Privacy 324 add_action( 'user_request_action_confirmed', '_wp_privacy_account_request_confirmed' ); 325 add_filter( 'user_request_action_confirmed_message', '_wp_privacy_account_request_confirmed_message', 10, 2 ); 326 add_filter( 'wp_privacy_personal_data_exporters', 'wp_register_comment_personal_data_exporter' ); 327 add_filter( 'wp_privacy_personal_data_erasers', 'wp_register_comment_personal_data_eraser' ); 328 325 329 // Cron tasks 326 330 add_action( 'wp_scheduled_delete', 'wp_scheduled_delete' );
Note: See TracChangeset
for help on using the changeset viewer.