only in patch2: unchanged: --- a/includes/update.inc +++ b/includes/update.inc @@ -795,6 +795,11 @@ function update_fix_d7_requirements() { function update_fix_d7_install_profile() { $profile = drupal_get_profile(); + // Default profile has been renamed to Standard in D7. + if ($profile == 'default') { + $profile = 'standard'; + } + $results = db_select('system', 's') ->fields('s', array('name', 'schema_version')) ->condition('name', $profile)