Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
herewithme committed Jul 30, 2024
1 parent 36a3129 commit 9ab96d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/cli/migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private function get_blog_ids_with_meta_key() {
switch_to_blog( $blog->blog_id );

// Table exists ?
if ( $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->postmeta ) ) === $wpdb->postmeta ) {
if ( $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->postmeta ) ) !== $wpdb->postmeta ) {
restore_current_blog();
continue;
}
Expand Down

0 comments on commit 9ab96d7

Please sign in to comment.