Make WordPress Core

Ticket #20285: 20285.2.diff

File 20285.2.diff, 1.4 KB (added by ryan, 13 years ago)
  • wp-includes/author-template.php

     
    9696 * @param int $user_id Optional. User ID.
    9797 * @return string The author's field from the current author's DB object.
    9898 */
    99 function get_the_author_meta($field = '', $user_id = false) {
    100         if ( ! $user_id )
     99function get_the_author_meta( $field = '', $user_id = false ) {
     100        if ( ! $user_id ) {
    101101                global $authordata;
    102         else
     102                $user_id = $authordata->ID;
     103        } else {
    103104                $authordata = get_userdata( $user_id );
     105        }
    104106
    105         // Keys used as object vars cannot have dashes.
    106         $field = str_replace('-', '', $field);
    107         $field = strtolower($field);
    108         $user_field = "user_$field";
     107        if ( in_array( $field, array( 'login', 'pass', 'nicename', 'email', 'url', 'registered', 'activation_key', 'status' ) ) )
     108                $field = 'user_' . $field;
    109109
    110         if ( 'id' == $field )
    111                 $value = isset($authordata->ID) ? (int)$authordata->ID : 0;
    112         elseif ( isset($authordata->$user_field) )
    113                 $value = $authordata->$user_field;
    114         else
    115                 $value = isset($authordata->$field) ? $authordata->$field : '';
     110        $value = isset( $authordata->$field ) ? $authordata->$field : '';
    116111
    117         return apply_filters('get_the_author_' . $field, $value, $user_id);
     112        return apply_filters( 'get_the_author_' . $field, $value, $user_id );
    118113}
    119114
    120115/**