• Resolved jpresley23

    (@jpresley23)


    Line 274 in tealium.php generates a “Deprecated: Assigning the return value of new by reference is deprecated: warning. If you change it from:

    $searchResults = &new WP_Query( 's='.str_replace( ' ', '+', $searchQuery.'&showposts=-1' ) );

    to

    $searchResults = new WP_Query( 's='.str_replace( ' ', '+', $searchQuery.'&showposts=-1' ) );

    you will get rid of the warning.

    https://wordpress.org/plugins/tealium/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Deprecated warning’ is closed to new replies.