From dff8d8ad00bc6336749833fb707532d1258f3065 Mon Sep 17 00:00:00 2001 From: Luigi Date: Mon, 22 May 2023 14:56:06 +0200 Subject: [PATCH] fix version --- src/Migration.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Migration.php b/src/Migration.php index a205893ee6e..f4a71e21028 100644 --- a/src/Migration.php +++ b/src/Migration.php @@ -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', ), ); @@ -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 ) ); } }