commit 9082d49944dc3ca3c7e8b6020ddbfa547e74fb29 Author: Matthew Radcliffe Date: Sat Jul 6 13:48:17 2013 -0400 Issue #1871700 by mradcliffe: Fix update numbers for node, system, and user per re-roll. diff --git a/core/modules/node/node.install b/core/modules/node/node.install index 8ed5c9f..19b137b 100644 --- a/core/modules/node/node.install +++ b/core/modules/node/node.install @@ -1117,7 +1117,7 @@ function node_update_8020() { /** * Migrate recent content and syndicate blocks to config. */ -function node_update_8020() { +function node_update_8021() { // Block name and id mapping. $map = array( 'recent' => 'recent_content', diff --git a/core/modules/system/system.install b/core/modules/system/system.install index 450b94c..a4319d1 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -2258,7 +2258,7 @@ function system_update_8059() { * * @ingroup config_upgrade */ -function system_update_8059() { +function system_update_8060() { $results = db_select('block')->condition('module', 'system')->fields('block')->execute()->fetchAll(); // There are a variety of block names and plugins that are not consistent. diff --git a/core/modules/user/user.install b/core/modules/user/user.install index f25e7cb..4616557 100644 --- a/core/modules/user/user.install +++ b/core/modules/user/user.install @@ -1092,7 +1092,7 @@ function user_update_8020() { /** * Migrate user blocks into configuration. */ -function user_update_8019() { +function user_update_8021() { $results = db_select('block')->condition('module', 'user')->fields('block')->execute()->fetchAll(); foreach ($results as $block) {