Changeset 36617 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 02/22/2016 11:14:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r36588 r36617 549 549 * @since 2.5.0 550 550 * 551 * @param string $username User's username .551 * @param string $username User's username or email address. 552 552 * @param string $password User's password. 553 553 * @return WP_User|WP_Error WP_User object if the credentials are valid, … … 576 576 // TODO what should the error message be? (Or would these even happen?) 577 577 // Only needed if all authentication handlers fail to return anything. 578 $user = new WP_Error( 'authentication_failed', __('<strong>ERROR</strong>: Invalid username or incorrect password.'));578 $user = new WP_Error( 'authentication_failed', __( '<strong>ERROR</strong>: Invalid username, email address or incorrect password.' ) ); 579 579 } 580 580
Note: See TracChangeset
for help on using the changeset viewer.