Changeset 4339 for trunk/wp-includes/pluggable.php
- Timestamp:
- 10/04/2006 04:47:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r4288 r4339 179 179 180 180 if ( '' == $password ) { 181 $error = __('<strong>E rror</strong>: The password field is empty.');181 $error = __('<strong>ERROR</strong>: The password field is empty.'); 182 182 return false; 183 183 } … … 187 187 188 188 if (!$login) { 189 $error = __('<strong>E rror</strong>: Wrongusername.');189 $error = __('<strong>ERROR</strong>: Invalid username.'); 190 190 return false; 191 191 } else { … … 195 195 return true; 196 196 } else { 197 $error = __('<strong>E rror</strong>: Incorrect password.');197 $error = __('<strong>ERROR</strong>: Incorrect password.'); 198 198 $pwd = ''; 199 199 return false;
Note: See TracChangeset
for help on using the changeset viewer.