The MU forums have moved to WordPress.org

bug in wp-includes/taxonomy.php (1 post)

  1. daft27
    Member
    Posted 15 years ago #

    Lines 572-573:

    else if ( 'names' == $fields )
    $select_this == 't.name';

    should be

    else if ( 'names' == $fields )
    $select_this = 't.name';

    Similarly,
    Lines 582:

    }

    should be

    } else if ( 'names' == $fields) {
    $terms = $wpdb->get_col($query);
    return $terms;
    }

About this Topic

  • Started 15 years ago by daft27