Thread Starter
termik
(@termik)
Aaron, could you give me a link to this plugin?
Hey,
I also got this problem after upgrading WP to 3.5.
I found some solutions, but with every plugin you need to edit this one line differently:
//OLD:
$wpdb->prepare( "SELECT * FROM some_table WHERE ID = $id AND name = $name" );
//NEW:
$wpdb->prepare( "SELECT * FROM some_table WHERE ID = %d AND name = %s", $id, $name );
I don’t have idea how to edit this…