Make WordPress Core


Ignore:
Timestamp:
02/22/2008 05:43:56 PM (16 years ago)
Author:
ryan
Message:

Notice fixes from nbachiyski. fixes #5961

File:
1 edited

Legend:

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

    r6851 r6983  
    641641    }
    642642
     643    $select_this = '';
    643644    if ( 'all' == $fields )
    644645        $select_this = 't.*, tt.*';
     
    10421043    $object_ids = implode(', ', $object_ids);
    10431044
     1045    $select_this = '';
    10441046    if ( 'all' == $fields )
    10451047        $select_this = 't.*, tt.*';
     
    12531255
    12541256    $t = get_taxonomy($taxonomy);
    1255     if ( ! $append && $t->sort ) {
     1257    if ( ! $append && isset($t->sort) && $t->sort ) {
    12561258        $values = array();
    12571259        $term_order = 0;
Note: See TracChangeset for help on using the changeset viewer.