Warning: Missing argument 2 for wpdb::prepare(), called in /home/vplum44/public_html/AikenPetsReunited.org/wp-content/themes/inove/footer.php on line 22 and defined in /home/vplum44/public_html/AikenPetsReunited.org/wp-includes/wp-db.php on line 990
Warning: Missing argument 2 for wpdb::prepare(), called in /home/vplum44/public_html/AikenPetsReunited.org/wp-content/themes/inove/footer.php on line 22 and defined in /home/vplum44/public_html/AikenPetsReunited.org/wp-includes/wp-db.php on line 990
See the last post in this thread:
http://wordpress.org/support/topic/troubleshooting-wordpress-35-master-list?replies=4
you could post this in http://wordpress.org/support/theme/inove to alert the theme developer, however, the theme has not been updated in two years ...
this is the line 22 in footer.php of the 'inove' theme:
$post_datetimes = $wpdb->get_row($wpdb->prepare("SELECT YEAR(min(post_date_gmt)) AS firstyear, YEAR(max(post_date_gmt)) AS lastyear FROM $wpdb->posts WHERE post_date_gmt > 1970"));
change it to:
$post_datetimes = $wpdb->get_row($wpdb->prepare("SELECT YEAR(min(post_date_gmt)) AS firstyear, YEAR(max(post_date_gmt)) AS lastyear FROM $wpdb->posts WHERE post_date_gmt > %s",'1970'));You must log in to post.