Call to undefined method wpdb::preapare()
-
please update your script wp-statistics/includes/functions/purge.php
on line 71$result = $wpdb->get_results( $wpdb->preapare( "SELECT DISTINCT uri FROM {$table_name} WHERE
date< %s", $date_string ) );
change to
$result = $wpdb->get_results( $wpdb->prepare( "SELECT DISTINCT uri FROM {$table_name} WHERE
date< %s", $date_string ) );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Call to undefined method wpdb::preapare()’ is closed to new replies.