Make WordPress Core


Ignore:
Timestamp:
05/24/2009 11:47:49 PM (16 years ago)
Author:
ryan
Message:

Trim tailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/user.php

    r11441 r11450  
    180180
    181181    // Allow plugins to return there own errors.
    182     do_action_ref_array('user_profile_update_errors', array ( &$errors, $update, &$user ) );   
    183    
     182    do_action_ref_array('user_profile_update_errors', array ( &$errors, $update, &$user ) );
     183
    184184    if ( $errors->get_error_codes() )
    185185        return $errors;
     
    804804
    805805    //get_user_setting = JS saved UI setting. else no-js-falback code.
    806     if ( 'hide' == get_user_setting('default_password_nag') || isset($_GET['default_password_nag']) && '0' == $_GET['default_password_nag'] ) {     
     806    if ( 'hide' == get_user_setting('default_password_nag') || isset($_GET['default_password_nag']) && '0' == $_GET['default_password_nag'] ) {
    807807        delete_user_setting('default_password_nag');
    808808        update_usermeta($user_ID, 'default_password_nag', false);
Note: See TracChangeset for help on using the changeset viewer.