Changeset 44906
- Timestamp:
- 03/15/2019 04:26:55 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r44784 r44906 3331 3331 'post_name__in' => array( $action_name ), // Action name stored in post_name column. 3332 3332 'title' => $email_address, // Email address stored in post_title column. 3333 'post_status' => 'any', 3333 'post_status' => array( 3334 'request-pending', 3335 'request-confirmed', 3336 ), 3334 3337 'fields' => 'ids', 3335 3338 ) … … 3337 3340 3338 3341 if ( $requests_query->found_posts ) { 3339 return new WP_Error( 'duplicate_request', __( 'A request for this email address already exists.' ) );3342 return new WP_Error( 'duplicate_request', __( 'An incomplete request for this email address already exists.' ) ); 3340 3343 } 3341 3344
Note: See TracChangeset
for help on using the changeset viewer.