Changeset 8985
- Timestamp:
- 06/21/2019 07:26:03 AM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/inc/privacy-functions.php
r7350 r8985 34 34 $email_user = get_user_by( 'email', $email ); 35 35 36 // Currently only enabled for special accounts. 37 if ( 'export' === $type && ( ! is_user_logged_in() || ! function_exists( 'wporg_user_has_restricted_password' ) || ! wporg_user_has_restricted_password() ) ) { 38 $error_message = 'This form is currently unavailable.'; 39 } elseif ( ! reCAPTCHA\check_status() ) { 36 if ( ! reCAPTCHA\check_status() ) { 40 37 $error_message = esc_html__( 'Your form session has expired. Please try again.', 'wporg' ); 41 38 } elseif ( -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy-data-export-request.php
r7351 r8985 71 71 <div class="entry-content row"> 72 72 <section class="col-8"> 73 <p><em>This page is under active development and is not currently enabled. All text is not final and will change.</em></p>74 75 73 <p><?php esc_html_e( 'WordPress.org respects your privacy and intends to remain transparent about any personal data we store about individuals. Under the General Data Protection Regulation (GDPR), EU citizens and residents are entitled to receive a copy of any personal data we might hold about you.', 'wporg' ); ?></p> 76 74 … … 87 85 <p><?php esc_html_e( 'Please check your email for a confirmation link, and follow the instructions to authenticate your request.', 'wporg' ); ?></p> 88 86 </div> 89 <?php endif; ?>90 91 <div class="notice notice-error notice-alt">92 <p>This is currently disabled unless you have a 'special' WordPress.org account.</p>93 </div>94 <?php if ( is_user_logged_in() && function_exists( 'wporg_user_has_restricted_password' ) && wporg_user_has_restricted_password() ) : ?>95 <div class="notice notice-info notice-alt"><p>PS: You have a special account.</p></div>96 87 <?php endif; ?> 97 88
Note: See TracChangeset
for help on using the changeset viewer.