Changeset 43161
- Timestamp:
- 05/03/2018 08:09:35 PM (6 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/privacy.php
r43156 r43161 62 62 update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); 63 63 64 add_settings_error( 65 'page_for_privacy_policy', 66 'page_for_privacy_policy', 67 sprintf( 68 /* translators: %s: URL to edit Privacy Policy page */ 69 __( 'Your privacy policy page created successfully. You’ll want to <a href="%s">review and edit your policy</a> next.' ), 70 'post.php?post=' . $privacy_policy_page_id . '&action=edit' 71 ), 72 'updated' 73 ); 64 wp_redirect( admin_url( 'post.php?post=' . $privacy_policy_page_id . '&action=edit' ) ); 65 exit; 74 66 } 75 67 }
Note: See TracChangeset
for help on using the changeset viewer.