diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 3634974..80349e3 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1893,17 +1893,12 @@ function install_already_done_error() { * * @param $install_state * An array of information about the current installation state. The loaded - * profile information will be added here, or an exception will be thrown if - * the profile cannot be loaded. + * profile information will be added here. */ function install_load_profile(&$install_state) { $profile = $install_state['parameters']['profile']; - if ($install_state['profiles'][$profile]->load()) { - $install_state['profile_info'] = install_profile_info($install_state['parameters']['profile'], $install_state['parameters']['langcode']); - } - else { - throw new Exception(t('Sorry, the profile you have chosen cannot be loaded.')); - } + $install_state['profiles'][$profile]->load(); + $install_state['profile_info'] = install_profile_info($profile, $install_state['parameters']['langcode']); } /** diff --git a/core/modules/action/tests/action_bulk_test/action_bulk_test.module b/core/modules/action/tests/action_bulk_test/action_bulk_test.module deleted file mode 100644 index b3d9bbc..0000000 --- a/core/modules/action/tests/action_bulk_test/action_bulk_test.module +++ /dev/null @@ -1 +0,0 @@ -