diff --git a/classes/transient.php b/classes/transient.php index 09d73d6fe..0f8beeb5d 100755 --- a/classes/transient.php +++ b/classes/transient.php @@ -162,7 +162,7 @@ public static function clear_wpcron(){ */ public static function get_all(){ global $wpdb; - $like = '%' . $wpdb->esc_like( 'cftransdata' ) . '%'; + $like = $wpdb->esc_like( 'cftransdata' ) . '%'; $query = $wpdb->prepare( "SELECT option_name FROM {$wpdb->options} WHERE option_name LIKE %s ", $like ); $return = []; $results = $wpdb->get_results($query,ARRAY_A);