Warning: Missing argument 2 for wpdb::prepare(), called in /public_html/wp-content/plugins/bainternet-user-ranks/baur.class.php on line 249 and defined in /public_html/wp-includes/wp-db.php on line 990
Warning: Missing argument 2 for wpdb::prepare(), called in /public_html/wp-content/plugins/bainternet-user-ranks/baur.class.php on line 249 and defined in /public_html/wp-includes/wp-db.php on line 990
It's not broken it's just a warning I have fixed it by replacing this line in the file: /wp-content/plugins/bainternet-user-ranks/baur.class.php
Replace this line:
$r = $wpdb->get_results( $wpdb->prepare( "SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'ba_ur'"));
With this:
$r = $wpdb->get_results( $wpdb->prepare( "SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'ba_ur'", $id));
Hope this helps you.
Thank you, that fixed it!
thanks,
Fixed in 1.5.2!
You must log in to post.