Make WordPress Core


Ignore:
Timestamp:
10/04/2006 04:47:50 PM (18 years ago)
Author:
ryan
Message:

Improved login from Viper007Bond. fixes #3123

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pluggable.php

    r4288 r4339  
    179179
    180180    if ( '' == $password ) {
    181         $error = __('<strong>Error</strong>: The password field is empty.');
     181        $error = __('<strong>ERROR</strong>: The password field is empty.');
    182182        return false;
    183183    }
     
    187187
    188188    if (!$login) {
    189         $error = __('<strong>Error</strong>: Wrong username.');
     189        $error = __('<strong>ERROR</strong>: Invalid username.');
    190190        return false;
    191191    } else {
     
    195195            return true;
    196196        } else {
    197             $error = __('<strong>Error</strong>: Incorrect password.');
     197            $error = __('<strong>ERROR</strong>: Incorrect password.');
    198198            $pwd = '';
    199199            return false;
Note: See TracChangeset for help on using the changeset viewer.