Deprecated warning
-
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.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Deprecated warning’ is closed to new replies.