Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed May 22, 2023
1 parent 59bc629 commit dff8d8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class Migration {
*/
private $db_upgrades = array(
// We don't need to do the following migration yet, but we'll keep it here for future use.
'10.3.0' => array(
'wc_blocks_update_710_blockified_product_grid_block',
'10.2.0' => array(
'wc_blocks_update_1020_blockified_product_grid_block',
),
);

Expand Down Expand Up @@ -47,7 +47,7 @@ public function run_migrations() {
/**
* Set a flag to indicate if the blockified Product Grid Block should be rendered by default.
*/
public static function wc_blocks_update_710_blockified_product_grid_block() {
public static function wc_blocks_update_1020_blockified_product_grid_block() {
update_option( Options::WC_BLOCK_USE_BLOCKIFIED_PRODUCT_GRID_BLOCK_AS_TEMPLATE, wc_bool_to_string( false ) );
}
}

0 comments on commit dff8d8a

Please sign in to comment.