Make WordPress Core


Ignore:
Timestamp:
10/04/2012 06:37:43 PM (13 years ago)
Author:
ryan
Message:

Avoid 'Only variables should be assigned by reference' warning. Props wonderboymusic. see #21865

File:
1 edited

Legend:

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

    r22021 r22117  
    327327
    328328        while ( $parent->parent ) { // get the top parent
    329             $parent = &get_term( $parent->parent, $taxonomy->name );
     329            $parent = get_term( $parent->parent, $taxonomy->name );
    330330            if ( is_wp_error( $parent ) )
    331331                break;
Note: See TracChangeset for help on using the changeset viewer.