Hey
I would appreciate it if anyone can help me fixing the issue here
ERROR
Warning: Missing argument 2 for wpdb::prepare(), called in /home/!@#$%^/public_html/wp-content/plugins/no-future-posts/no-future-posts.php on line 74 and defined in /home/!@#$%^/public_html/wp-includes/wp-db.php on line 990
Warning: Missing argument 2 for wpdb::prepare(), called in /home/!@#$%^/public_html/wp-content/plugins/no-future-posts/no-future-posts.php on line 81 and defined in /home/!@#$%^/public_html/wp-includes/wp-db.php on line 990
lines between 74 and 81
// set future posts
$sql = "UPDATE $tposts
SET post_status = 'publish'
WHERE post_status = 'future'
AND id NOT IN ($e_posts)";
$wpdb->query($wpdb->prepare($sql));
// reset excluded posts
$sql = "UPDATE $tposts
SET post_status = 'future'
WHERE id IN ($e_posts)
AND post_date > now()";
$wpdb->query($wpdb->prepare($sql));
NoFuturePosts::update_count();
}
please let me know how to fix it, Thanks