Make WordPress Core


Ignore:
Timestamp:
12/28/2012 04:40:46 AM (11 years ago)
Author:
nacin
Message:

Switch to a string already available in the wordpress.pot, via the XML-RPC server class. The other string is only available in the wordpress-admin.pot.

Prevents any string movements in the 3.5 branch. see #22858.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.5/wp-includes/user.php

    r23211 r23225  
    14541454    $user_obj = get_userdata( $ID );
    14551455    if ( ! $user_obj )
    1456         return new WP_Error( 'invalid_user_id', __( 'Invalid user ID.' ) );
     1456        return new WP_Error( 'invalid_user_id', __( 'Invalid user ID' ) );
    14571457
    14581458    $user = $user_obj->to_array();
Note: See TracChangeset for help on using the changeset viewer.