summaryrefslogtreecommitdiff
path: root/includes/install.core.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-05-03 06:51:41 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-05-03 06:51:41 +0000
commit878fb1e781380742f981c24fc1fcf7a4b9583024 (patch)
treedc06e25d269093f37a1f0b880fde6910110bee4c /includes/install.core.inc
parenta94ea2a4e0f6e8e01c91c064eeabd098e2eb4044 (diff)
downloadbrdo-878fb1e781380742f981c24fc1fcf7a4b9583024.tar.gz
brdo-878fb1e781380742f981c24fc1fcf7a4b9583024.tar.bz2
#409410 by hunmonk, David_Rothstein: Don't clobber install profile messages on final page of installer.
Diffstat (limited to 'includes/install.core.inc')
-rw-r--r--includes/install.core.inc4
1 files changed, 0 insertions, 4 deletions
diff --git a/includes/install.core.inc b/includes/install.core.inc
index 5569208f8..ae9802bb9 100644
--- a/includes/install.core.inc
+++ b/includes/install.core.inc
@@ -1332,11 +1332,7 @@ function install_load_profile(&$install_state) {
* An array of information about the current installation state.
*/
function install_bootstrap_full(&$install_state) {
- // Bootstrap newly installed Drupal, while preserving existing messages.
- $messages = isset($_SESSION['messages']) ? $_SESSION['messages'] : '';
-
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
- $_SESSION['messages'] = $messages;
}
/**