How to fix the error: "Missing argument 2 for wpdb::prepare()"
-
Since WP 3.5 there is an error when saving posts when Focal is enabled (line 980 in focal_wp28.php). To fix this, replace the line
$querystr = $wpdb->prepare($querystr);
with
$querystr = $wpdb->prepare($querystr,null);
That solved the issue for me. Thanks to https://www.ads-software.com/support/topic/missing-argument-2-for-wpdbprepare?replies=2, it seems that other plugins are affected, too
https://www.ads-software.com/extend/plugins/folding-category-widget/
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘How to fix the error: "Missing argument 2 for wpdb::prepare()"’ is closed to new replies.