summaryrefslogtreecommitdiffstatshomepage
path: root/core/includes/install.core.inc
diff options
context:
space:
mode:
Diffstat (limited to 'core/includes/install.core.inc')
-rw-r--r--core/includes/install.core.inc7
1 files changed, 1 insertions, 6 deletions
diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 38fd8252c19..bce52fdfeb8 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -1022,11 +1022,6 @@ function install_settings_form_submit($form, &$form_state) {
'required' => TRUE,
);
- $settings['config_signature_key'] = array(
- 'value' => drupal_hash_base64(drupal_random_bytes(55)),
- 'required' => TRUE,
- );
-
// This duplicates drupal_get_token() because that function can't work yet.
// Wondering if it makes sense to move this later in the process, but its
// nice having all the settings stuff here.
@@ -1036,7 +1031,7 @@ function install_settings_form_submit($form, &$form_state) {
// already has the db stuff in it, and right now in that case your
// config directory never gets created. So this needs to be moved elsewhere.
$settings['config_directory_name'] = array(
- 'value' => 'config_' . drupal_hmac_base64('', session_id() . $settings['config_signature_key']['value'] . $settings['drupal_hash_salt']['value']),
+ 'value' => 'config_' . drupal_hmac_base64('', session_id() . $settings['drupal_hash_salt']['value']),
'required' => TRUE,
);