Changeset 10941 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions-restapi.php
- Timestamp:
- 04/30/2021 08:44:23 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions-restapi.php
r10928 r10941 85 85 86 86 // Check we don't have a pending registration for that email. 87 if ( $pending = wporg_get_pending_user( $email ) ) { 87 $pending = wporg_get_pending_user( $email ); 88 89 // And that there's no pending account signups for other emails for that inbox. 90 if ( ! $pending && false !== strpos( $email, '+' ) ) { 91 $pending = wporg_get_pending_user_by_email_wildcard( $email ); 92 } 93 94 if ( $pending ) { 88 95 return [ 89 96 'available' => false,
Note: See TracChangeset
for help on using the changeset viewer.